Python
搓搓程序狗
you can you code,no can no bb
展开
-
python utc时间戳转换 (解决1970之前的问题)
mmp,找个1970年之前的转换一百度全是复制粘贴的1970年之后的 这些人复制来复制去真是烦,算了还是自己写吧。1970年之后的标准转换#1.时间19691231curTime = datetime.strptime(str(19691231),'%Y%m%d') #先把时间转为标准的 日期格式(datetime)strTime = curTime.strftime...原创 2019-03-08 18:33:28 · 5138 阅读 · 1 评论 -
python 自动识别读取的文件编码
废话不说,直接上代码!import chardet #需要下载该模块def readFile(file_path): with open(file_path, 'rb') as f: cur_encoding = chardet.detect(f.read())['encoding'] print (cur_encoding) #当前文件编码 ...原创 2019-03-08 18:42:43 · 5984 阅读 · 4 评论