python常见的错误提示处理

python常见的错误有

  1. NameError变量名错误
  2. IndentationError代码缩进错误
  3. AttributeError对象属性错误
  4. TypeError类型错误
  5. IOError输入输出错误
  6. KeyError字典键值错误详细讲解

1.NameError变量名错误 报错:

python学习交流群:660193417###
>>> print a

Traceback (most recent call last):

File "<stdin>", line 1, in <module>

NameError: name 'a' is not defined

解决方案:
先要给a赋值。才能使用它。在实际编写代码过程中,报NameError错误时,查看该变量是否赋值,或者是否有大小写不一致错误,或者说不小心将变量名写错了。注:在Python中,无需显示变量声明语句,变量在第一次被赋值时自动声明。

>>> a=1

>>> print a

1

2.IndentationError代码缩进错误
代码

python学习交流群:660193417###
a=1b=2

if a<b:

print a

报错

IndentationError: expected an indented block

原因:
缩进有误,python的缩进非常严格,行首多个空格,少个空格都会报错。这是新手常犯的一个错误,由于不熟悉python编码规则。像def,class,if,for,while等代码块都需要缩进。缩进为四个空格宽度,需要说明一点,不同的文本编辑器中制表符(tab键)代表的空格宽度不一,如果代码需要跨平台或跨编辑器读写,建议不要使用制表符。
解决方案

a=1b=2

if a<b:

    print a

3.AttributeError对象属性错误
报错:

python学习交流群:660193417###
>>> import sys

>>> sys.Path

Traceback (most recent call last):

File "<stdin>", line 1, in <module>

AttributeError: 'module' object has no attribute 'Path'

原因:
sys模块没有Path属性。
python对大小写敏感,Path和path代表不同的变量。
将Path改为path即可。

>>> sys.path

['',  '/usr/lib/python2.6/site-packages']

猜你喜欢

转载自blog.csdn.net/m0_67575344/article/details/124453553