Python问题汇总
记录日常碰到的问题及解决方法
python编程汇
这个作者很懒,什么都没留下…
展开
-
Python3 xlrd,NotImplementedError: formatting_info=True not yet implemented
在使用如下代码xlrd读取.xlsx文件时,报错!信息如下:代码:# encoding=gbkimport xlrd# 打开Book工作簿(即excel工作簿,包含所有工作表)workBook = xlrd.open_workbook('test.xlsx',formatting_info=True)错误信息: raise NotImplementedError("formatting_info=True not yet implemented")NotImplem.原创 2020-06-07 12:02:36 · 1431 阅读 · 0 评论 -
SyntaxError: Non-UTF-8 code starting with
执行如下代码报错:SyntaxError: Non-UTF-8 code starting with '\xbb'解决:在文件第一行加 # encoding=gbk 或者# coding:utf-8或者:原创 2020-05-27 22:25:13 · 864 阅读 · 0 评论 -
Sublime Text 3:os.system控制台输出中文乱码
在Sublime Text 3中 运行Python代码,os.system('ipconfig') 输出结果是乱码。如下:# -*- coding: utf-8 -*-import osos.system('ipconfig')结果:解决方法:1:首先新建Build System,路径:Tools > Build System > Build New System2:在新建的文件中用以下代码替换{ "shell_cmd": "Python $file原创 2020-05-27 21:33:40 · 1082 阅读 · 2 评论 -
Pycharm 下os.system执行命令输出乱码
在Pycharm中,运行Python代码os.system('ipconfig') 输出结果是乱码。如下:解决方法:1:File-->Settings2:Settings-->Editor-->File Encodings:把Global Encoding 修改为GBK,修改之后应用,点击OK。修改之后的运行效果:...原创 2020-05-27 21:53:55 · 4366 阅读 · 1 评论