我能够用 time.strptime
解析包含日期/时间的字符串>>> import time
>>> time.strptime('30/03/09 16:31:32', '%d/%m/%y %H:%M:%S')
(2009, 3, 30, 16, 31, 32, 0, 89, -1)
如何解析包含毫秒的时间字符串?
>>> time.strptime('30/03/09 16:31:32.123', '%d/%m/%y %H:%M:%S')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/lib/python2.5/_strptime.py", line 333, in strptime
data_string[found.end():])
ValueError: unconverted data remains: .123
答案 0 :(得分:270)
Python 2.6添加了一个新的strftime / strptime宏%f
,它执行微秒。不确定是否记录在任何地方。但是如果你使用2.6或3.0,你可以这样做:
time.strptime('30/03/09 16:31:32.123', '%d/%m/%y %H:%M:%S.%f')
编辑:我从来没有真正使用time
模块,所以我最初没有注意到这一点,但似乎time.struct_time实际上并不存储毫秒/微秒。您可能最好使用datetime
,如下所示:
>>> from datetime import datetime
>>> a = datetime.strptime('30/03/09 16:31:32.123', '%d/%m/%y %H:%M:%S.%f')
>>> a.microsecond
123000
答案 1 :(得分:12)
我知道这是一个较旧的问题,但我仍在使用Python 2.4.3,我需要找到一种更好的方法将数据字符串转换为日期时间。
如果datetime不支持%f且不需要try / except的解决方案是:
(dt, mSecs) = row[5].strip().split(".")
dt = datetime.datetime(*time.strptime(dt, "%Y-%m-%d %H:%M:%S")[0:6])
mSeconds = datetime.timedelta(microseconds = int(mSecs))
fullDateTime = dt + mSeconds
这适用于输入字符串“2010-10-06 09:42:52.266000”
答案 2 :(得分:3)
提供nstehr's answer引用的代码(来自its source):
def timeparse(t, format):
"""Parse a time string that might contain fractions of a second.
Fractional seconds are supported using a fragile, miserable hack.
Given a time string like '02:03:04.234234' and a format string of
'%H:%M:%S', time.strptime() will raise a ValueError with this
message: 'unconverted data remains: .234234'. If %S is in the
format string and the ValueError matches as above, a datetime
object will be created from the part that matches and the
microseconds in the time string.
"""
try:
return datetime.datetime(*time.strptime(t, format)[0:6]).time()
except ValueError, msg:
if "%S" in format:
msg = str(msg)
mat = re.match(r"unconverted data remains:"
" \.([0-9]{1,6})$", msg)
if mat is not None:
# fractional seconds are present - this is the style
# used by datetime's isoformat() method
frac = "." + mat.group(1)
t = t[:-len(frac)]
t = datetime.datetime(*time.strptime(t, format)[0:6])
microsecond = int(float(frac)*1e6)
return t.replace(microsecond=microsecond)
else:
mat = re.match(r"unconverted data remains:"
" \,([0-9]{3,3})$", msg)
if mat is not None:
# fractional seconds are present - this is the style
# used by the logging module
frac = "." + mat.group(1)
t = t[:-len(frac)]
t = datetime.datetime(*time.strptime(t, format)[0:6])
microsecond = int(float(frac)*1e6)
return t.replace(microsecond=microsecond)
raise
答案 3 :(得分:1)
我的第一个想法是尝试传递它'30 / 03/09 16:31:32.123'(在秒和毫秒之间有一个句点而不是冒号。)但这不起作用。快速浏览文档表明,无论如何都会忽略小数秒......
啊,版本差异。这是reported as a bug,现在在2.6+,您可以使用“%S.%f”来解析它。
答案 4 :(得分:1)
来自python邮件列表:parsing millisecond thread。在那里发布了一个似乎可以完成工作的功能,尽管如作者的评论中提到的那样,它有点像黑客。它使用正则表达式来处理引发的异常,然后进行一些计算。
在将它传递给strptime之前,您还可以预先尝试正则表达式和计算。
答案 5 :(得分:1)
对于python 2,我做了这个
print ( time.strftime("%H:%M:%S", time.localtime(time.time())) + "." + str(time.time()).split(".",1)[1])
它打印时间“%H:%M:%S”,将time.time()拆分为两个子串(在。之前和之后。)xxxxxxx.xx,因为.xx是我的毫秒,我将第二个子串添加到我的“%H:%M:%S”
希望有道理:) 示例输出:
13:31:21.72 眨眼01
13:31:21.81 01年结束
13:31:26.3 眨眼01
13:31:26.39 01年结束
13:31:34.65 从01开始
答案 6 :(得分:0)
DNS answer above实际上是不正确的。 SO询问的时间是毫秒,但是答案是毫秒。不幸的是,Python没有毫秒指令,只有毫秒(请参阅doc),但是您可以通过在字符串末尾附加三个零并将字符串解析为毫秒来解决该问题,例如:
datetime.strptime(time_str + '000', '%d/%m/%y %H:%M:%S.%f')
其中time_str
的格式类似于30/03/09 16:31:32.123
。
希望这会有所帮助。