作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要将日期从 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/
我是一名优秀的程序员,十分优秀!