Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个时间字符串,字符串的长度是 13。例如 '1234567890123' 。我想将它作为 Date-field 插入到 postgresql(Django) 中,它应该保持精确到毫秒级别。
你能帮我吗,最好有示例代码吗?
只需使用本机 Python 类型。除以 1000 将时间戳从毫秒转换为秒。这假设您使用的是 POSIX 时间而不是UTC,而不是其他一些纪元。
import datetime from __future__ import division print(datetime.datetime.fromtimestamp(1234567890123/1000))
输出是:
2009-02-13 15:31:30.123000