作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
如何确保将 datetime.date.today()
转换为 UTC 时间?
到目前为止,这是我的代码:
#today : 2014-12-21
today = datetime.date.today()
#1900-01-01 16:00:00+00:00
timeformat = datetime.datetime.strptime('16:00', '%H:%M').replace(tzinfo=pytz.utc)
#combine today and timeformat 2014-12-21 16:00:00
now = datetime.datetime.combine(u, timeformat.time())
str_now = now.strftime("%Y-%m-%d %H:%M:%S")
最佳答案
使用utcnow
:
today = datetime.datetime.utcnow().date()
关于python - 如何将 datetime.date.today() 转换为 UTC 时间?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27587127/
我是一名优秀的程序员,十分优秀!