python 常见报错汇总】的更多相关文章

python官方文档:https://docs.python.org/zh-cn/3/tutorial/index.html 1.indentationerror:unindent does not match any outer indentation level 原因:没有对齐导致的,设置notepad:视图-->显示符号-->显示空格和制表符 参考:https://www.crifan.com/python_syntax_error_indentationerror/comment-pa…
HDFS集群常见报错汇总 作者:尹正杰 版权声明:原创作品,谢绝转载!否则将追究法律责任. 一.DataXceiver error processing WRITE_BLOCK operation 报错信息以及截图如下: calculation112.aggrx::DataXceiver error processing WRITE_BLOCK operation src: / dst: / java.io.IOException: Premature EOF from inputStream…
一.TypeError:类型错误,对象用来表示值的类型非预期类型时发生的错误 错误例子: age=18 print(‘我的年龄是’+age) 报错信息:TypeError: can only concatenate str (not "int") to str (这是类型错误,提示必须是一个字符串,不能是数字.) 解决方法:在使用“+”做拼接的时候,必须使用字符串,或者把数字转化成字符串. 正确代码: age=18 print(‘我的年龄是’+str(age)) 二.Attribute…
作为 Python 初学者,在刚学习 Python 编程时,经常会看到一些报错信息. Python 有两种错误很容易辨认:语法错误和异常. Python assert(断言)用于判断一个表达式,在表达式条件为 false 的时候触发异常. 语法错误 Python 的语法错误或者称之为解析错,是初学者经常碰到的,如下实例 >>> while True print('Hello world') File "<stdin>", line , in ? while…
 更新ing 报错类型 报错内容 错误判断 错误解决方式 IndentationError IndentationError:unexpected indent 格式错误:以外缩进   IndentationError IndentationError:unindent does not match any outer indentation level 格式错误:缩进方式不一致,有的用空格(数量是否一致),有的用Tab  调整对应内容的缩进,一致(4空格) IndentationError  …
1>.ERROR 1290 (HY000): The MySQL server is running with the --secure-file-priv option so it cannot execute this statement 报错原因: 在MySQL的配置文件中未指定“--secure-file-priv”参数的默认值,而改参数的功能就是确定使用SELECT ... INTO语句时将查询的结果保存到本地文件中,如果未指定则不可以使用该功能. 解决方案: 既然知道原因所在,我们需…
1.TabError: inconsistent use of tabs and spaces in indentation 在缩进中不一致地使用tab键和空格键. 报错原因:混用了tab和space所致! 解决方法:平时养成敲代码的时候只使用tab键进行缩进操作之类的习惯.或用编辑器将tab转换成空格之类. 2.错误信息:can't open file 'sum1-100.py' : [Errno 2] No such file or directory 不能打开文件'sum1-100.py'…
1.Springboot测试类运行报错 java.lang.IllegalStateException: Unable to find a @SpringBootConfiguration, you need to use @ContextConfiguration or @SpringBootTest(classes=...) with your test…
背景 在pycharm项目下,有一个data.xlsx,主要用来存放接口测试用例数据的 要通过openpyxl库去读取data.xlsx,方法: openpyxl.load_workbook(path) 然后报错了,报错如下图 问题原因 xlsx不能正常打开了,可以尝试在pycharm中双击data.xlsx,会发现无法正常打开xlsx文件了 解决方法 只能重新创建一个新的xlsx文件,然后覆盖已损坏的文件,就可以解决这个问题了…
1.Pycharm No module named requests 的解决方法 pip install requests 然后重启pycharm…