如何将datetime对象格式化为以毫秒为单位的字符串?
您可以datetime使用方法将对象格式化为 Python 中带有毫秒的字符串strftime。要包含毫秒,您可以strftime与strftime("%f")微秒的方法结合使用,如下所示:
datetime
strftime
strftime("%f")
from datetime import datetime # Create a datetime object now = datetime.now() # Format as a string with milliseconds formatted_string = now.strftime("%Y-%m-%d %H:%M:%S.") + f"{now.microsecond // 1000:03d}" print(formatted_string) ``
这将为您提供格式为“YYYY-MM-DD HH:MM YYYY-MM-DD HH:MM:SS.mmm.mm mmmre”的字符串
YYYY-MM-DD HH:MM:SS.mmm
mmm