**Python常用模块
Posted brzp97
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了**Python常用模块相关的知识,希望对你有一定的参考价值。
Time
timestamp;Format String;struct_time
import time print(time.time()) # 时间戳:1487130156.419527 print(time.strftime("%Y-%m-%d %X")) #格式化的时间字串:‘2017-02-15 11:40:53‘ print(time.localtime()) #本地时区的struct_time print(time.gmtime()) #UTC时区的struct_time
以上是关于**Python常用模块的主要内容,如果未能解决你的问题,请参考以下文章