Python积累三:object() take no object!
Posted dLarger
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python积累三:object() take no object!相关的知识,希望对你有一定的参考价值。
A,报错:object() take no object!
根因:代码书写级错误!!!!!
两个原因:
1. __init__ 左右都是2个下划线,这里自己没掉进去!
2.init写成int,不是int,太想当然,成功掉坑里!!!!!!
B,报错:IndentationError: expected an indented block
是脚本缩进的问题,检查脚本缩进是否有空格和tab混用的情况或者是缩进明显不对的情况。
C,报错:unindented does not match any outer indentation level
根因:Tab和空格会报错
检查方法:ctrl+A选中所有代码,可看到哪些是空格,哪些是Tab。
如果是....表示空格;
是——表示Tab。
以上是关于Python积累三:object() take no object!的主要内容,如果未能解决你的问题,请参考以下文章
Python-TypeError: object() takes no parameters
Python3.6单例模式报错TypeError: object() takes no parameters的解决方法
Python-Numpy库的扩维(维度扩展)操作示例代码积累
解决:TypeError: object() takes no parameters
python继承初始化对象实例时 TypeError: module() takes at most 2 arguments (3 given)