摘要: 1 #查看python默认编码格式 2 >>> import sys 3 >>> print sys.getdefaultencoding() #python 2.x 默认编码是ascii格式; python 3.x 默认编码是utf-8格式 4 ascii 5 6 #设置python默认的编码格式 7 >>> import sys 8 >>> print sys.setdefaultenc... 阅读全文
posted @ 2018-05-13 15:59 蒋励 阅读(1264) 评论(0) 推荐(0) 编辑