PyCharm的debug报错翻译

1.cannot import name ‘opfile’ from partially initialized module ‘opertefile’,most likely due to a circular import
无法从部分初始化的模块’opertefile’中导入名称’opfile’,很可能是由于循环导入
2.Recursion Error:maxmum recursion depth exceeded in comparison
递归错误:最大递归深度超过比较
3.Type Error ‘float’ object is not callable
类型错误“float”对象不可调用
4.Type Error setText(self,str):argument 1 has unexpected type ‘tuple’
setText(self,str):参数1有意外的类型’tuple’
5.Type Error can’t set attributes of built-in /extension type ‘str’
类型错误不能设置内置/扩展类型的属性’str’
6.Type Error : ‘int’ object is not iterable
类型错误:int对象不是可迭代的
7.Type Error:只能将str(不是"int")连接到str
类型错误:只能将str(不是"int")连接到str
8.Positional argument follows keyword argument
位置参数跟在关键字参数之后
9.Permission Error: [Errno 13] Permission denied: ‘C://log’
权限错误:[Errno 13]权限被拒绝:‘C://log’

你可能感兴趣的:(Python实践,python)