在Python中设置本地时间和日期转换。

huangapple go评论77阅读模式
英文:

Setting local time and date conversion in Python

问题

我在系统和服务器上运行以下代码并获得不同的结果

如何设置时区以获得不考虑系统或服务器设置的相同结果

print(datetime(2023,6,6,0,0).timestamp())

英文:

I run the following code on the system and server and get different results

How to set the time zone to get the same result regardless of the system or server settings

print(datetime(2023,6,6,0,0).timestamp())

答案1

得分: 1

import datetime
import timezone

val = datetime.datetime(2023, 6, 6, 0, 0, 0, tzinfo=timezone.utc)

英文:

Assuming you want the result to be in UTC:

import datetime
import timezone

val = datetime.datetime(2023, 6, 6, 0, 0, 0, tzinfo=timezone.utc)

huangapple
  • 本文由 发表于 2023年8月4日 04:28:12
  • 转载请务必保留本文链接:https://go.coder-hub.com/76831432.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定