strptime可以根据特定的格式化的时间格式,将文本解析成datetime类型。 datetime格式化的日期时间格式,可以参考:https://blog.terrynow.com/2021/05/13/python-strftime-format-datetime-force-with-locale-string/ from datetime import datetime date_string1 = "2021-05-15" date_string2 = "2021-05-15 18:08" print("…