歡迎光臨
每天分享高質量文章

Python 常見的17個錯誤分析

(點選上方公眾號,可快速關註一起學Python)

 來源:開源中國   連結:

https://www.oschina.net/question/89964_62779

對於剛入門的Pythoner在學習過程中執行程式碼是或多或少會遇到一些錯誤,剛開始可能看起來比較費勁。隨著程式碼量的積累,熟能生巧當遇到一些執行時錯誤時能夠很快的定位問題原題。下麵整理了常見的17個錯誤,希望能夠幫助到大家

1、

忘記在if,for,def,elif,else,class等宣告末尾加 :

會導致SyntaxError :invalid syntax”如下:

if spam == 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!')

 

或者:

if spam == 42:
   print('Hello!')
 print('Howdy!')

 

4、

在 for 迴圈陳述句中忘記呼叫 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])

 

 

5、

嘗試修改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[:13] + 'r' + spam[14:]
print(spam)
6、

嘗試連線非字串值與字串

導致 “TypeError: Can’t convert ‘int’ object to str implicitly

該錯誤發生在如下程式碼中:

numEggs = 12
print('I have ' + numEggs + ' eggs.')

而正確做法是:

numEggs = 12
print('I have ' + str(numEggs) + ' eggs.')

numEggs = 12
print('I have %s eggs.' % (numEggs))

 

7、

在字串首尾忘記加引號

導致“SyntaxError: EOL while scanning string literal

該錯誤發生在如下程式碼中:

print(Hello!')

print('Hello!)

myName = 'Al'
print('My name is ' + myName + . How are you?')

 

8、

變數或者函式名拼寫錯誤

導致“NameError: name ‘fooba’ is not defined

該錯誤發生在如下程式碼中:

foobar = 'Al'
print('My name is ' + fooba)

spam = ruond(4.2)

spam = Round(4.2)

 

9、

方法名拼寫錯誤

導致 “AttributeError: ‘str’ object has no attribute ‘lowerr’

該錯誤發生在如下程式碼中:

spam = 'THIS IS IN LOWERCASE.'
spam = spam.lowerr()

 

10、

取用超過list最大索引

導致“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, yield

 

13、

在一個定義新變數中使用增值運運算元

導致“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[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():
   def myMethod():
       print('Hello!')
a = Foo()
a.myMethod()

已同步到看一看
贊(0)

分享創造快樂