摘要: os: This module provides a portable way of using operating system dependent functionality. 这个模块提供了一种方便的使用操作系统函数的方法。 sys: This module provides access t 阅读全文
posted @ 2019-01-11 17:49 平平无奇小辣鸡 阅读(147) 评论(0) 推荐(0) 编辑
摘要: import time # 时间戳 --> 结构化时间 ->> 格式化时间 t = time.time() # 时间戳 st = time.localtime(t) # 结构化时间 ft = time.strftime('%Y/%m/%d %H:%M:%S', st) # 格式化时间 print(f 阅读全文
posted @ 2019-01-11 17:46 平平无奇小辣鸡 阅读(1826) 评论(0) 推荐(0) 编辑