这里整理下时间类函数的使用方法,主要是整理下,防止老是忘记。
参考官方网站:
https://docs.python.org/3/library/datetime.html?highlight=strftime#strftime-strptime-behavior
1. strftime
datetime.strftime(format)Return a string representing the date and time, controlled by an explicit format string.返回将datetime根据指定format格式化后的字符串
|
|
这里主要是了解format格式就可以了
常用格式:
2. strptime
datetime.strptime(date_string, format)
Return a datetime corresponding to date_string, parsed according to format
根据format,将字符串转换为datetime
|
|