python标准模块 —— time时间模块
1.time.ctime()将当前时间打印为字符串
import time
print(time.ctime(),type(time.ctime()))#Mon Apr 30 15:35:48 2018 <class 'str'>
2.time.sleep(a) 程序休息a秒运行
for i in range(10):
print('hello')
time.sleep(1)
'''
Mon Apr 30 15:35:48 2018 <class 'str'>
hello
hello
hello
hello
hello
hello
hello
hello
hello
hello'''
3. 将当前时间转为当前时区的struct_time
wday 0-6表示周日到周六
ydat 1-366 一年中的第几天
isdst 是否为夏令时,默认为-1
ydat 1-366 一年中的第几天
isdst 是否为夏令时,默认为-1
print(time.localtime())
print(type(time.localtime()))
#time.struct_time(tm_year=2018, tm_mon=4, tm_mday=30, tm_hour=15, tm_min=36, tm_sec=34, tm_wday=0, tm_yday=120, tm_isdst=0)
#<class 'time.struct_time'>
4.time.strftime(a,b)
a为格式化字符串格式
b为时间戳,一般用localtime()
a为格式化字符串格式
b为时间戳,一般用localtime()
print(time.strftime('%Y-%m-%d %H:%M:%S',time.localtime()))
#2018-04-30 15:36:37
%y 两位数的年份表示(00-99)
%Y 四位数的年份表示(000-9999)
%m 月份(01-12)
%d 月内中的一天(0-31)
%H 24小时制小时数(0-23)
%I 12小时制小时数(01-12)
%M 分钟数(00=59)
%S 秒(00-59)
%a 本地简化星期名称
%A 本地完整星期名称
%b 本地简化的月份名称
%B 本地完整的月份名称
%c 本地相应的日期表示和时间表示
%j 年内的一天(001-366)
%p 本地A.M.或P.M.的等价符
%U 一年中的星期数(00-53)星期天为星期的开始
%w 星期(0-6),星期天为星期的开始
%W 一年中的星期数(00-53)星期一为星期的开始
%x 本地相应的日期表示
%X 本地相应的时间表示
%Z 当前时区的名称
%% %号本身