2020年4月28日

摘要: import re print(re.match("\d+","123asdzcxzvsd").group()) #从头开始匹配,匹配到第一个为止不往下进行了 print(re.split(" ","hello abc def")) #以空格分开,输出结果为['hello', 'abc', 'def 阅读全文
posted @ 2020-04-28 19:21 卓帅爹 阅读(207) 评论(0) 推荐(0) 编辑
 
摘要: Json模块:可以进行任意语言之间的数据转换 一.与之前的eval()对比 dic={"name":"alex"} f=open("hello","w",encoding="utf-8") #新建一个文件 #此时想往f里存入dic得转换成字符串的格式 f.write(str(dic)) #之后在想打 阅读全文
posted @ 2020-04-28 14:26 卓帅爹 阅读(131) 评论(0) 推荐(0) 编辑
 
摘要: 一。时间模块(※※※※) import time #时间戳(用途,计算运行了多少时间) print(time.time()) #输出1587996158.5779295,代表一个秒数,从1970.1.1到现在有多少秒 #结构化时间 print(time.localtime()) #输出结果time. 阅读全文
posted @ 2020-04-28 01:54 卓帅爹 阅读(204) 评论(0) 推荐(0) 编辑