python(datetime、字符串转换)

时间:2023-01-12 21:27:28

datetime对象与字符串可以互相转化

代码如下:

 

 1 from datetime import datetime
2
3
4 def datetime_string(time):
5 return time.strftime("%Y-%m-%d %H:%M:%S")
6 # datetime对象转换字符串
7
8
9 def string_datetime(string):
10 return datetime.strftime(string, "%Y-%m-%d %H:%M:%S")
11 # 字符串对象转换datetime对象