- 94 当前时间的浮点数表
- 95 当前时间的时间数组
- 96 当前时间转为时间字符串
- 97 格式化时间字符串
- 98 字符时间转时间数组
- 99 打印当前日期
- 100 当前日期字符串
- 101 字符日期转日期
- 102 打印当前时间
- 103 当前时间转字符串显示
- 104 字符时间转时间类型
- 105 计算还有多久是女朋友生日
- 106 绘制年的日历图
- 107 月的日历图
- 108 判断是否为闰年
- 109 判断月有几天
- 110 月的第一天
- 111 月的最后一天
- 112 输入日期, 判断这一天是这一年的第几天 ?
94 当前时间的浮点数表
当前时间浮点数
import time
seconds = time.time()
seconds
# 1582341559.0950701
95 当前时间的时间数组
import time
seconds = time.time()
local_time = time.localtime(seconds)
local_time
# time.struct_time(tm_year=2020, tm_mon=2, tm_mday=22, tm_hour=11, tm_min=19, tm_sec=19, tm_wday=5, tm_yday=53, tm_isdst=0)
96 当前时间转为时间字符串
time 类 asctime
方法,转换 struct_time
为时间字符串
seconds = time.time()
local_time = time.localtime(seconds)
str_time = time.asctime(local_time)
str_time
# 'Sat Feb 22 11:19:19 2020'
97 格式化时间字符串
time 类 strftime
方法,按照时间格式要求,格式化 struct_time
为时间字符串
import time
seconds = time.time()
local_time = time.localtime(seconds)
format_time = time.strftime('%Y-%m-%d %H:%M:%S',local_time)
format_time
# '2020-02-22 11:19:19'
98 字符时间转时间数组
time 类 strptime
方法,解析( parse) 输入的时间字符串为 struct_time
类型的时间。