python字符串转时间戳毫秒_在Python中将字符串时间戳转换为秒或毫秒

我有一个数据框与条目Logs.loc [0,1])[0:18]输出'13:51:32.006655755',我想转换此到毫秒。在Python中将字符串时间戳转换为秒或毫秒

如何将其转换为毫秒。我试图使用以下内容:

dt.datetime.strptime((Logs.loc [0,1])[0:18],'%H:%M:%S.%f') Traceback (最近呼叫最后):

文件“”,第1行,在 dt.datetime.strptime((Logs.loc [0,1])[0:18],'%H:%M:% S.%F')

文件 “C:\ Program Files文件\ Anaconda3 \ lib_strptime.py”,线路510,在_strptime_datetime TT,分数= _strptime(data_string,格式)

文件“C:\ Program Files \ Anaconda3 \ lib_strptime.py“,行346,在_strptime data_string [found.end()])

ValueError异常:未转换的数据仍然是:755

你可能感兴趣的:(python字符串转时间戳毫秒)