摘要: 一、使用 time 模块展示当前日期和时间 import time from time import gmtime, strftime t = time.localtime() print (time.asctime(t)) # Sun May 7 09:30:37 2017 print(strft 阅读全文
posted @ 2023-11-08 16:48 python学习者0 阅读(1606) 评论(0) 推荐(0) 编辑