摘要:
os: This module provides a portable way of using operating system dependent functionality. 这个模块提供了一种方便的使用操作系统函数的方法。 sys: This module provides access t 阅读全文
摘要:
import time # 时间戳 --> 结构化时间 ->> 格式化时间 t = time.time() # 时间戳 st = time.localtime(t) # 结构化时间 ft = time.strftime('%Y/%m/%d %H:%M:%S', st) # 格式化时间 print(f 阅读全文