摘要:
一、Escape 特征:以%u开头 Escape()函数可对字符串进行编码,这样就可以在所有的计算机上读取该字符串,Escape(string) string—必需。需被转义或者编码的字符串。 在线加解密网站:http://tools.jb51.net/tools/Escape.asp 通过pyth 阅读全文
摘要:
#时间处理 def handel_of_time(times): time_list = re.findall(r"\d+\.?\d*", times) # 只取数字 if len(time_list) == 5 : #有年份无秒 times = time_list[0] + '-' + time_ 阅读全文