码迷,mamicode.com
首页 > 编程语言 > 详细

python入门基础教程05 Python工具常见错误

时间:2015-03-04 06:20:36      阅读:213      评论:0      收藏:0      [点我收藏+]

标签:python基础教程 python入门教程 python基础 python教程

Python-Shell反馈常见错误

初学者通常会使用Python-Shell来学习Python基础及语法知识,在使用Python-Shell 时会遇到这样或者那样的错误,有的是语法错误,有的是键入的函数或者变量名字拼写错误,现就初学者常出现的错误做一个总结。

变量、函数未定义

下面我们简单总结一下在使用Python-Shell时常见的错误提示。

>>>len = 12>>>le

Traceback (most recent call last):
  File "<pyshell#36>", line 1, in <module>
    leNameError: name ‘le‘ is not defined
>>>

上边Python-Shell反馈NameError: name ’le’ is not defined,是说’le’变量未定义,的确如此,因为之前我们赋值的是len变量等于12,le没有赋值就没有被创建故报错没有被定义。

>>>len = "www.jeapedu.com">>> pint(len)

Traceback (most recent call last):
  File "<pyshell#38>", line 1, in <module>
    pint(len)NameError: name ‘pint‘ is not defined
>>>

从上边IDLE-Shell反馈NameError: name ’pint’ is not defined,可以看出pint 函数没有定义,应该是函数print少了个r字母。

非语句字符

在python语句指令里放入了一些非语句的字符,怎么理解?比如在print函数前敲了一个(多个)空格或者按了TAB 键,都会导致在Python-Shell里运行语句时出现错误。

>>> s = ‘www.jeapedu.com‘>>> print s
www.jeapedu.com
>>>     print s
    
  File "<pyshell#45>", line 1
    print s
   ^
IndentationError: unexpected indent
>>>

第4行错误的原因在于,print函数前有一个TAB或者若干个空格,导致在Shell里语法不合规而报错误。


本文出自 “Python培训智普教育” 博客,请务必保留此出处http://jeapedu.blog.51cto.com/7878264/1617006

python入门基础教程05 Python工具常见错误

标签:python基础教程 python入门教程 python基础 python教程

原文地址:http://jeapedu.blog.51cto.com/7878264/1617006

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!