當初學 Python 時,想要弄清楚 Python 的錯誤訊息的含義可能有點複雜。這裡列出了常見的一些讓你程式 crash 的執行階段錯誤。
1)忘記在if , elif , else , for , while , class ,def 聲明末尾添加:(導致“SyntaxError :invalid syntax”)
該錯誤將發生在類似如下代碼中:
42 print('Hello!')2)使用= 而非==(導致「SyntaxError: invalid syntax」)= 是賦值運算子而== 是等於比較運算運算。此錯誤發生在下列程式碼中:if spam = 42: print('Hello!')3)錯誤的使用縮排量。 (導致“IndentationError:unexpected indent”、“IndentationError:unindent does not match any outer indetation level”以及“IndentationError:expected an indented block”)縮進短語必須恢復到先前的縮排格式。這個錯誤發生在下列程式碼中:print('Hello!') print('Howdy!')或:
spam(H !')
if spam == 42:
語print(! len() (導致「TypeError: 'list' object cannot be interpreted as an integer」)
通常你想要透過索引來迭代一個list或string的元素,這需要呼叫range() 函式。要記得回傳len 值而不是回傳這個清單。
此錯誤發生在下列程式碼中:
spam = ['cat', 'dog', 'mouse']
for i in range(spam):
print(spam[i])
嘗試修改string的值(導致「TypeError: 'str' object does not support item assignment」)string是一種不可變的資料類型,該錯誤發生在如下程式碼中:spam = 'I have a pet cat.'spam[13] = 'r'print(spam)而你實際上想要這樣做:spam = 'I have a pet cat.'spam = spam[am[13] + 'r' + spam[14:]print(spam)6)嘗試連接非字串值與字串(導致「TypeError: Can't convert 'int' object to str implicitly」)該錯誤發生在以下程式碼:numEggs = 12print('I have ' + numEggs + ' eggs.')%s
)在字符串首尾忘記加引號(導致“SyntaxError: EOL while scanning string literal”)該錯誤發生在如下代碼中:
或:
spam = ruond(4.2)
或:
str' object has no attribute 'lowerr'”)
該錯誤發生在以下程式碼中:
spam = 'THIS IS IN LOWERCASE.'
spam = spam.lowerr()
10)引用「IndexError: list index out of range」)
該錯誤發生在以下程式碼:
spam = ['cat', 'dog', 'mouse']
print(spam[6])
11)使用不存在的字典鍵值(導致“KeyError:'spam'”)
該錯誤發生在如下代碼中:
spam = {'cat': 'Zophie', 'dog': 'Basil', 'mouse ': 'Whiskers'}
print('The name of my pet zebra is ' + spam['zebra'])
12)嘗試使用Python關鍵字作為變數名稱(導致「SyntaxError:invalid syntax」)
Python關鍵不能用作變數名,該錯誤發生在以下程式碼中:class = 'algebra'Python3的關鍵字有: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, yield13)在一個定義新變數中使用增值運算符(導致「NameError: name 'foobar' is not defined」)🎜不要在宣告變數時使用0或空字串作為初始值,這樣使用自增運算子的一句spam += 1等於spam = spam + 1,這表示spam需要指定一個有效的初始值。
此錯誤發生在如下程式碼中:
spam = 0
spam += 42
eggs += 42
14)在定義局部變數前在同名函數中使用局部變數(此時有與局部變數的全域變數存在)(導致「UnboundLocalError: local variable 'foobar' referenced before assignment」)
在函數中使用局部變來那個而同時又存在同名全域變數時是很複雜的,使用規則是:如果在函數中定義了任何東西,如果它只是在函數中使用那它就是局部的,反之就是全域變數。
這意味著你不能在定義它之前把它當全域變數在函數中使用。
該錯誤發生在如下代碼中:
someVar = 42
def myFunction():
print(someVar)
someVar = 100
myFunction()
15)嘗試使用range()創建整數列表(導致“TypeError: 'range' object does not support item assignment”)
有時你想要得到一個有序的整數列表,所以range() 看上去是生成此列表的不錯方式。然而,你需要記住 range() 回傳的是 “range object”,而不是實際的 list 值。
該錯誤發生在如下程式碼中:
spam = range(10)
spam[4] = -1
也許這才是你想做:
spam = list(range(10))這就是你想做:
spam = list(range(10)))
spam[4] = -1
(注意:在Python 2 中spam = range(10) 是能行的,因為在Python 2 中range() 回傳的是list值,但在Python 3 中就會產生以上錯誤)
16)不錯在++ 或-- 自增自減運算子。 (導致「SyntaxError: invalid syntax」)
如果你習慣於例如 C++ , Java , PHP 等其他的語言,也許你會想要嘗試使用 ++ 或 -- 自增自減一個變數。在Python中是沒有這樣的操作符的。
該錯誤發生在如下代碼中:
spam = 1
spam++
也許這才是你想做的:
spam = 1
spam += 1
17)忘記為方法的第一個參數加入self參數(導致「TypeError: myMethod() takes no arguments (1 given)」)
該錯誤發生在如下程式碼中:
class Foo():
'Hello!')
a = Foo()
a.myMethod()