英文:
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)
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论