time.localtime() 这是获取本地时间 打印出来的话是时间元组
time.striptime() 这是把字符串转为时间数组
比如>>> time.strptime('1990-1-1','%Y-%m-%d') time.struct_time(tm_year=1990, tm_mon=1, tm_mday=1, tm_hour=0, tm_min=0, tm_sec=0, tm_wday=0, tm_yday=1, tm_isdst=-1) time.strftime() 这是格式化的时间字符串 自己输入的‘input’转时间元组所以是strptime,想要格式化’format‘输出时间的就是strftime
datetime模块
datetime模块包含datetime类 from datetime import datetime
参考自:https://blog.csdn.net/qq_42336573/article/details/84063286
https://www.cnblogs.com/laidaili/p/7614405.html