gpt4 book ai didi

c# - 我如何在 python 中反序列化 C# datetime?

转载 作者:行者123 更新时间:2023-11-30 22:16:11 26 4
gpt4 key购买 nike

我需要将日期从 C# 转换为 Python。数据格式为json。 json 中包含的数据格式为:/Date (1373338800000)。必须转换为 python 的有效日期。

最佳答案

看起来像带有毫秒的 unix 时间戳。

>>> import datetime
>>> datetime.datetime.fromtimestamp(int("1373338800000") / 1000)
datetime.datetime(2013, 7, 8, 20, 0)

关于c# - 我如何在 python 中反序列化 C# datetime?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17560324/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com