python def报错 python报错大全 您所在的位置:网站首页 ar2048错误代码大全 python def报错 python报错大全

python def报错 python报错大全

2023-07-10 23:59| 来源: 网络整理| 查看: 265

python def报错 python报错大全_缩进

python常见的错误有

1.NameError变量名错误

2.IndentationError代码缩进错误

3.AttributeError对象属性错误

4.TypeError类型错误

5.IOError输入输出错误

6.KeyError字典键值错误

详细讲解

1.NameError变量名错误

报错:>>> print a

Traceback (most recent call last): File "", line 1, in NameError: name 'a' is not defined

解决方案:

先要给a赋值。才能使用它。在实际编写代码过程中,报NameError错误时,查看该变量是否赋值,或者是否有大小写不一致错误,或者说不小心将变量名写错了。

注:在Python中,无需显示变量声明语句,变量在第一次被赋值时自动声明。>>> a=1

>>> print a

1

2.IndentationError代码缩进错误

代码a=1b=2

if a print a

报错:IndentationError: expected an indented block

原因:

缩进有误,python的缩进非常严格,行首多个空格,少个空格都会报错。这是新手常犯的一个错误,由于不熟悉python编码规则。像def,class,if,for,while等代码块都需要缩进。

缩进为四个空格宽度,需要说明一点,不同的文本编辑器中制表符(tab键)代表的空格宽度不一,如果代码需要跨平台或跨编辑器读写,建议不要使用制表符。

解决方案a=1b=2

if a print a

3.AttributeError对象属性错误

报错:>>> import sys

>>> sys.Path Traceback (most recent call last): File "", line 1, in AttributeError: 'module' object has no attribute 'Path'

原因:

sys模块没有Path属性。

python对大小写敏感,Path和path代表不同的变量。将Path改为path即可。>>> sys.path

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



【本文地址】

公司简介

联系我们

今日新闻

    推荐新闻

    专题文章
      CopyRight 2018-2019 实验室设备网 版权所有