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…
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…