摘要:
jsondiff.py #!/usr/bin/python#_*_encoding:utf-8_*_ import argparse import jsonimport sys reload(sys)sys.setdefaultencoding('utf-8') def parseArgs(): d 阅读全文
摘要:
import sys reload(sys) sys.setdefaultencoding(‘utf-8’) 以上是python2的写法,但是在python3中这个需要已经不存在了,这么做也不会什么实际意义。 在Python2.x中由于str和byte之间没有明显区别,经常要依赖于defaulten 阅读全文