對(duì)初學(xué)者來說,想要弄懂Python的某些錯(cuò)誤信息還是有困難的,下面羅列了一些常見的運(yùn)行時(shí)錯(cuò)誤:
1.忘記在if, elif, else, for, while, class, def 語句末尾添加冒號(hào)(:),從而導(dǎo)致:“SyntaxError: invalid syntax”錯(cuò)誤
錯(cuò)誤發(fā)生在如下類似代碼里:if spam == 42print('Hello!')
2.使用=號(hào),而不是==號(hào),從而導(dǎo)致 “SyntaxError: invalid syntax”錯(cuò)誤
“=”是賦值語句,而“==”號(hào)是比較兩值是否相等的,這種錯(cuò)誤常發(fā)生在如下類似代碼中:if spam = 42:print('Hello!')
3.使用縮進(jìn)量錯(cuò)誤,從而導(dǎo)致“IndentationError:unexpected indent”、“IndentationError:unindent does not match any outer indetation level”和“IndentationError:expected an indented block”錯(cuò)誤
要記住的是縮進(jìn)只發(fā)生在以冒號(hào)(:)為結(jié)尾的語句之后的行,而此段語句結(jié)束后,必須恢復(fù)到之前的縮進(jìn)格式,這種錯(cuò)誤常發(fā)生在如下代碼之中:
print('Hello!')print('Howdy!')...and this:
if spam == 42:print('Hello!')print('Howdy!')...and this:
if spam == 42:print('Hello!')
4.在 for 循環(huán)語句中忘記調(diào)用 len()從而導(dǎo)致“TypeError: ‘list’ object cannot be interpreted as an integer”錯(cuò)誤
你想要通過索引來迭代一個(gè)list或者string的元素,這時(shí)就需要調(diào)用 range() 函數(shù)。但是range函數(shù)接受的是只能是數(shù)字,比如len()的返回值,而非一個(gè)列表。這種錯(cuò)誤常發(fā)生在如下代碼中:spam = ['cat', 'dog', 'mouse']for i in range(spam):print(spam[i])
5.嘗試修改string的值,從而導(dǎo)致“TypeError: ‘str’ object does not support item assignment”錯(cuò)誤
string是一種不可變的數(shù)據(jù)類型,該錯(cuò)誤常發(fā)生在如下代碼中:spam = 'I have a pet cat.'spam[13] = 'r'print(spam)
6.嘗試連接非字符串值與字符串,從而導(dǎo)致 “TypeError: Can’t convert ‘int’ object to str implicitly”錯(cuò)誤
錯(cuò)誤常發(fā)生在如下代碼中:numEggs = 12print('I have ' + numEggs + ' eggs.')
而你實(shí)際想這樣做:numEggs = 12print('I have ' + str(numEggs) + ' eggs.')
或者:numEggs = 12print('I have %s eggs.' % (numEggs))
7.在字符串首尾忘記加引號(hào),從而導(dǎo)致“SyntaxError: EOL while scanning string literal”錯(cuò)誤
該錯(cuò)誤發(fā)生在如下代碼中:print(Hello!')
或者:print('Hello!)
或者:myName = 'Al'print('My name is ' + myName + . How are you?')
8.變量或者函數(shù)名拼寫錯(cuò)誤,從而導(dǎo)致“NameError: name ‘fooba’ is not defined”錯(cuò)誤
該錯(cuò)誤發(fā)生在如下代碼中:foobar = 'Al'print('My name is ' + fooba)
或者:spam = ruond(4.2)
或者:spam = Round(4.2)
9.方法名拼寫錯(cuò)誤,從而導(dǎo)致 “AttributeError: ‘str’ object has no attribute ‘lowerr’”錯(cuò)誤
該錯(cuò)誤發(fā)生在如下代碼中:spam = 'THIS IS IN LOWERCASE.'spam = spam.lowerr()
10.引用list下標(biāo)超出范圍,從而導(dǎo)致“IndexError: list index out of range”錯(cuò)誤
該錯(cuò)誤常發(fā)生在如下代碼中:spam = ['cat', 'dog', 'mouse']print(spam[6])
11.使用不存在的字典鍵值,從而導(dǎo)致“KeyError:‘spam’”錯(cuò)誤
該錯(cuò)誤發(fā)生在如下代碼中:spam = {'cat': 'Zophie', 'dog': 'Basil', 'mouse': 'Whiskers'}print('The name of my pet zebra is ' + spam['zebra'])
12.嘗試使用Python關(guān)鍵字作為變量名,從而導(dǎo)致“SyntaxError:invalid syntax”錯(cuò)誤
Python關(guān)鍵字不能用作變量名,該錯(cuò)誤發(fā)生在如下代碼中:class = 'algebra'
Python3的關(guān)鍵字有:and, as, assert, break, class, continue, def, del, elif, else, except, False, finally, for, from, global, if, import, in, is, lambda, None, nonlocal, not, or, pass, raise, return, True, try, while, with, yield
13.在一個(gè)定義新變量中使用增值操作符,從而導(dǎo)致“NameError: name ‘eggs’ is not defined”錯(cuò)誤
不要以為變量在創(chuàng)建時(shí)就使用0或者空字符串作為初始值,就使用自增操作符的一句spam += 1或spam = spam + 1,而spam是需要手動(dòng)顯示的指定一個(gè)有效的初始值。
該錯(cuò)誤發(fā)生在如下代碼中:spam = 0spam += 42eggs += 42
14.在定義局部變量前在函數(shù)中使用局部變量(此時(shí)有與局部變量同名的全局變量存在),則會(huì)導(dǎo)致“UnboundLocalError: local variable ‘foobar’ referenced before assignment”)
在函數(shù)中使用局部變量,而同時(shí)又存在同名全局變量時(shí)是很復(fù)雜的,使用規(guī)則是:如果在函數(shù)中定義了任何東西,如果它只是在函數(shù)中使用那它就是局部的,反之就是全局變量。
這意味著你不能在定義它之前把它當(dāng)全局變量在函數(shù)中使用。
該錯(cuò)誤發(fā)生在如下代碼中:someVar = 42def myFunction():print(someVar)someVar = 100myFunction()
15.嘗試使用 range()創(chuàng)建整數(shù)列表(導(dǎo)致“TypeError: ‘range’ object does not support item assignment”)
有時(shí)你想要得到一個(gè)有序的整數(shù)列表,所以 range() 看上去是生成此列表的不錯(cuò)方式。然而,你需要記住 range() 返回的是 “range object”,而不是實(shí)際的 list 值。
該錯(cuò)誤發(fā)生在如下代碼中:spam = range(10)spam[4] = -1
也許這才是你想做:spam = list(range(10))spam[4] = -1
注意:在 Python 2 中 spam = range(10) 是能行的,因?yàn)樵?Python 2 中 range() 返回的是list值,但是在 Python 3 中就會(huì)產(chǎn)生以上錯(cuò)誤
16.使用 ++ 或 – 自增自減操作符,從而導(dǎo)致“SyntaxError: invalid syntax”)
如果你習(xí)慣于例如 C++ , Java , PHP 等其他的語言,也許你會(huì)想要嘗試使用 ++ 或者 – 自增自減一個(gè)變量。在Python中是沒有這樣的操作符的。
該錯(cuò)誤發(fā)生在如下代碼中:spam = 1spam++
也許這才是你想做的:spam = 1spam += 1
17.忘記為方法的第一個(gè)參數(shù)添加self參數(shù)(導(dǎo)致“TypeError: myMethod() takes no arguments (1 given)”)
該錯(cuò)誤發(fā)生在如下代碼中:class Foo():def myMethod():print('Hello!')a = Foo()a.myMethod()
文章來源:百度文庫(kù)
-
python
+關(guān)注
關(guān)注
55文章
4768瀏覽量
84376 -
錯(cuò)誤代碼
+關(guān)注
關(guān)注
0文章
9瀏覽量
9974
原文標(biāo)題:17個(gè)新手常見的Python運(yùn)行時(shí)錯(cuò)誤
文章出處:【微信號(hào):FPGA-EETrend,微信公眾號(hào):FPGA開發(fā)圈】歡迎添加關(guān)注!文章轉(zhuǎn)載請(qǐng)注明出處。
發(fā)布評(píng)論請(qǐng)先 登錄
相關(guān)推薦
評(píng)論