摘要: import time time.sleep(1)#暂停时间 time.time()#显示当前系统时间戳 t=time.localtime()#结构化当地时间,可以将结构化时间想象成一个类 print(t.tm_year)#通过属性访问 阅读全文
posted @ 2019-07-11 22:38 coldplaycode 阅读(182) 评论(0) 推荐(0) 编辑

coldplaycode