摘要:
[转自]Python字符串的编码与解码(encode与decode) 首先要搞清楚,字符串在Python内部的表示是unicode编码,因此,在做编码转换时,通常需要以unicode作为中间编码,即先将其他编码的字符串解码(decode)成unicode,再从unicode编码(encode)... 阅读全文
摘要:
'''import simplejson as json#几个主要函数:dump、dumps、load、loads,带s跟不带s的区别: 带s的是对 字符串的处理,而不带 s的是对文件对像的处理。json、simplejson效率比较:simplejson在效率上来得有优势,推荐用simplejso... 阅读全文
摘要:
#-*-coding:utf-8-*-import osimport uuidimport urllib2import cookielib'''获取文件后缀名'''def get_file_extension(file): return os.path.splitext(file)[1]'''創建文... 阅读全文