摘要:
time在 Python 文档里,time是归类在Generic Operating System Services中,换句话说, 它提供的功能是更加接近于操作系统层面的。通读文档可知,time 模块是围绕着 Unix Timestamp 进行的。 该模块主要包括一个类 struct_time,另外 阅读全文
摘要:
1、字符串转为列表 str1 = 'a1b2' ls1 = [str(i) for i in str1] 2、列表转为字符串 ls2 = ['1','a','2','b'] str2 = ''.join(ls2) 阅读全文