博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python CST时间转换为本地时间
阅读量:5867 次
发布时间:2019-06-19

本文共 298 字,大约阅读时间需要 1 分钟。

把cst时间转换为本地时间

def cst_to_localTime(cst_time):
to_format = '%Y-%m-%d %H-%M-%S'
from_format = '%a %b %d %H:%M:%S CST %Y'
time_struct = time.strptime(cst_time, from_format)
times = time.strftime(to_format, time_struct)
return times

这里传进来的cst_time就是被转换的CST时间

转载于:https://blog.51cto.com/13961889/2369463

你可能感兴趣的文章
mysql 数据库名称,中间带有中划线问题
查看>>
PS 参数详细说明
查看>>
以太网帧结构
查看>>
cisco 交换机链路聚合
查看>>
我的友情链接
查看>>
vSphere vsan 6.5部署之一ESXi6.5安装
查看>>
记录 两张表的 条件更新
查看>>
我的友情链接
查看>>
隐藏squid头部信息
查看>>
AI编程集团第一阶段发展纲要
查看>>
VMware Workstation 8.0.Build 471780 正式KEY
查看>>
Java IO
查看>>
Alpha 冲刺报告(9/10)
查看>>
PG PLProxy配置说明
查看>>
Invalid command ‘WSGIScriptAliasMatch’
查看>>
用日志记录Linux用户执行的每一条命令(history)
查看>>
虚拟机版本降级
查看>>
【Water Problem】A+B problem (High-precision)
查看>>
centos升级openssh7.4,OpenSSH远程代码执行漏洞
查看>>
Radar Installation
查看>>