您好,登錄后才能下訂單哦!
Python簡(jiǎn)介:
Python是一種計(jì)算機(jī)程序設(shè)計(jì)語(yǔ)言。是一種面向?qū)ο蟮膭?dòng)態(tài)類型語(yǔ)言,最初被設(shè)計(jì)用于編寫(xiě)自動(dòng)化腳本(shell),隨著版本的不斷更新和語(yǔ)言新功能的添加,越來(lái)越多被用于獨(dú)立的、大型項(xiàng)目的開(kāi)發(fā)。
python中常見(jiàn)的錯(cuò)誤:
0、忘記寫(xiě)冒號(hào)
在 if、elif、else、for、while、class、def 語(yǔ)句后面忘記添加 “:”
if spam == 42 print('Hello!')
導(dǎo)致:SyntaxError: invalid syntax
2、使用錯(cuò)誤的縮進(jìn)
Python用縮進(jìn)區(qū)分代碼塊,常見(jiàn)的錯(cuò)誤用法:
print('Hello!') print('Howdy!')
導(dǎo)致:IndentationError: unexpected indent。同一個(gè)代碼塊中的每行代碼都必須保持一致的縮進(jìn)量
if spam == 42: print('Hello!') print('Howdy!')
導(dǎo)致:IndentationError: unindent does not match any outer indentation level。代碼塊結(jié)束之后縮進(jìn)恢復(fù)到原來(lái)的位置
if spam == 42: print('Hello!')
導(dǎo)致:IndentationError: expected an indented block,“:” 后面要使用縮進(jìn)
3、變量沒(méi)有定義
if spam == 42: print('Hello!')
導(dǎo)致:NameError: name 'spam' is not defined
4、獲取列表元素索引位置忘記調(diào)用 len 方法
通過(guò)索引位置獲取元素的時(shí)候,忘記使用 len 函數(shù)獲取列表的長(zhǎng)度。
spam = ['cat', 'dog', 'mouse'] for i in range(spam): print(spam[i])
導(dǎo)致:TypeError: range() integer end argument expected, got list.
正確的做法是:
spam = ['cat', 'dog', 'mouse'] for i in range(len(spam)): print(spam[i])
當(dāng)然,更 Pythonic 的寫(xiě)法是用 enumerate
spam = ['cat', 'dog', 'mouse'] for i, item in enumerate(spam): print(i, item)
5、修改字符串
字符串一個(gè)序列對(duì)象,支持用索引獲取元素,但它和列表對(duì)象不同,字符串是不可變對(duì)象,不支持修改。
spam = 'I have a pet cat.' spam[13] = 'r' print(spam)
導(dǎo)致:TypeError: 'str' object does not support item assignment
正確地做法應(yīng)該是:
spam = 'I have a pet cat.' spam = spam[:13] + 'r' + spam[14:] print(spam)
6、字符串與非字符串連接
num_eggs = 12 print('I have ' + num_eggs + ' eggs.')
導(dǎo)致:TypeError: cannot concatenate 'str' and 'int' objects
字符串與非字符串連接時(shí),必須把非字符串對(duì)象強(qiáng)制轉(zhuǎn)換為字符串類型
num_eggs = 12 print('I have ' + str(num_eggs) + ' eggs.')
或者使用字符串的格式化形式
num_eggs = 12 print('I have %s eggs.' % (num_eggs))
7、使用錯(cuò)誤的索引位置
spam = ['cat', 'dog', 'mouse'] print(spam[3])
導(dǎo)致:IndexError: list index out of range
列表對(duì)象的索引是從0開(kāi)始的,第3個(gè)元素應(yīng)該是使用 spam[2] 訪問(wèn)
8、字典中使用不存在的鍵
spam = {'cat': 'Zophie', 'dog': 'Basil', 'mouse': 'Whiskers'} print('The name of my pet zebra is ' + spam['zebra'])
在字典對(duì)象中訪問(wèn) key 可以使用 [],但是如果該 key 不存在,就會(huì)導(dǎo)致:KeyError: 'zebra'
正確的方式應(yīng)該使用 get 方法
spam = {'cat': 'Zophie', 'dog': 'Basil', 'mouse': 'Whiskers'} print('The name of my pet zebra is ' + spam.get('zebra'))
key 不存在時(shí),get 默認(rèn)返回 None
9、用關(guān)鍵字做變量名
class = 'algebra'
導(dǎo)致:SyntaxError: invalid syntax
在 Python 中不允許使用關(guān)鍵字作為變量名。Python3 一共有33個(gè)關(guān)鍵字。
>>> import keyword >>> print(keyword.kwlist) ['False', 'None', 'True', 'and', 'as', 'assert', 'break', 'class', 'continue', 'def', 'del', 'elif', 'else', 'except', 'finally', 'for', 'from', 'global', 'if', 'import', 'in', 'is', 'lambda', 'nonlocal', 'not', 'or', 'pass', 'raise', 'return', 'try', 'while', 'with', 'yield']
10、函數(shù)中局部變量賦值前被使用
someVar = 42 def myFunction(): print(someVar) someVar = 100 myFunction()
導(dǎo)致:UnboundLocalError: local variable 'someVar' referenced before assignment
當(dāng)函數(shù)中有一個(gè)與全局作用域中同名的變量時(shí),它會(huì)按照 LEGB 的順序查找該變量,如果在函數(shù)內(nèi)部的局部作用域中也定義了一個(gè)同名的變量,那么就不再到外部作用域查找了。
因此,在 myFunction 函數(shù)中 someVar 被定義了,所以 print(someVar) 就不再外面查找了,但是 print 的時(shí)候該變量還沒(méi)賦值,所以出現(xiàn)了 UnboundLocalError
11、使用自增 “++” 自減 “--”
spam = 0 spam++
哈哈,Python 中沒(méi)有自增自減操作符,如果你是從C、Java轉(zhuǎn)過(guò)來(lái)的話,你可要注意了。你可以使用 “+=” 來(lái)替代 “++”
spam = 0 spam += 1
12、錯(cuò)誤地調(diào)用類中的方法
class Foo: def method1(): print('m1') def method2(self): print("m2") a = Foo() a.method1()
導(dǎo)致:TypeError: method1() takes 0 positional arguments but 1 was given
method1 是 Foo 類的一個(gè)成員方法,該方法不接受任何參數(shù),調(diào)用 a.method1() 相當(dāng)于調(diào)用 Foo.method1(a),但 method1 不接受任何參數(shù),所以報(bào)錯(cuò)了。正確的調(diào)用方式應(yīng)該是 Foo.method1()。
以上就是python中一些常見(jiàn)的錯(cuò)誤的詳細(xì)內(nèi)容,更多請(qǐng)關(guān)注億速云其它相關(guān)文章!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。