中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

python的常見錯誤和解決方法

發布時間:2020-06-16 19:00:49 來源:億速云 閱讀:181 作者:元一 欄目:編程語言

Python簡介:

Python是一種計算機程序設計語言。是一種面向對象的動態類型語言,最初被設計用于編寫自動化腳本(shell),隨著版本的不斷更新和語言新功能的添加,越來越多被用于獨立的、大型項目的開發。

python中常見的錯誤:

0、忘記寫冒號

在 if、elif、else、for、while、class、def 語句后面忘記添加 “:”

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

導致:SyntaxError: invalid syntax

2、使用錯誤的縮進

Python用縮進區分代碼塊,常見的錯誤用法:

print('Hello!')
    print('Howdy!')

導致:IndentationError: unexpected indent。同一個代碼塊中的每行代碼都必須保持一致的縮進量

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

導致:IndentationError: unindent does not match any outer indentation level。代碼塊結束之后縮進恢復到原來的位置

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

導致:IndentationError: expected an indented block,“:” 后面要使用縮進

3、變量沒有定義

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

導致:NameError: name 'spam' is not defined

4、獲取列表元素索引位置忘記調用 len 方法

通過索引位置獲取元素的時候,忘記使用 len 函數獲取列表的長度。

spam = ['cat', 'dog', 'mouse']
for i in range(spam):
    print(spam[i])

導致:TypeError: range() integer end argument expected, got list.
正確的做法是:

spam = ['cat', 'dog', 'mouse']
for i in range(len(spam)):
    print(spam[i])

當然,更 Pythonic 的寫法是用 enumerate

spam = ['cat', 'dog', 'mouse']
for i, item in enumerate(spam):
    print(i, item)

5、修改字符串

字符串一個序列對象,支持用索引獲取元素,但它和列表對象不同,字符串是不可變對象,不支持修改。

spam = 'I have a pet cat.'
spam[13] = 'r'
print(spam)

導致:TypeError: 'str' object does not support item assignment

正確地做法應該是:

spam = 'I have a pet cat.'
spam = spam[:13] + 'r' + spam[14:]
print(spam)

6、字符串與非字符串連接

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

導致:TypeError: cannot concatenate 'str' and 'int' objects

字符串與非字符串連接時,必須把非字符串對象強制轉換為字符串類型

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

或者使用字符串的格式化形式

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

7、使用錯誤的索引位置

spam = ['cat', 'dog', 'mouse']
print(spam[3])

導致:IndexError: list index out of range

列表對象的索引是從0開始的,第3個元素應該是使用 spam[2] 訪問

8、字典中使用不存在的鍵

spam = {'cat': 'Zophie', 'dog': 'Basil', 'mouse': 'Whiskers'}
print('The name of my pet zebra is ' + spam['zebra'])

在字典對象中訪問 key 可以使用 [],但是如果該 key 不存在,就會導致:KeyError: 'zebra'

正確的方式應該使用 get 方法

spam = {'cat': 'Zophie', 'dog': 'Basil', 'mouse': 'Whiskers'}
print('The name of my pet zebra is ' + spam.get('zebra'))

key 不存在時,get 默認返回 None

9、用關鍵字做變量名

class = 'algebra'

導致:SyntaxError: invalid syntax

在 Python 中不允許使用關鍵字作為變量名。Python3 一共有33個關鍵字。

>>> 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、函數中局部變量賦值前被使用

someVar = 42

def myFunction():
    print(someVar)
    someVar = 100

myFunction()

導致:UnboundLocalError: local variable 'someVar' referenced before assignment

當函數中有一個與全局作用域中同名的變量時,它會按照 LEGB 的順序查找該變量,如果在函數內部的局部作用域中也定義了一個同名的變量,那么就不再到外部作用域查找了。

因此,在 myFunction 函數中 someVar 被定義了,所以 print(someVar) 就不再外面查找了,但是 print 的時候該變量還沒賦值,所以出現了 UnboundLocalError

11、使用自增 “++” 自減 “--”

spam = 0
spam++

哈哈,Python 中沒有自增自減操作符,如果你是從C、Java轉過來的話,你可要注意了。你可以使用 “+=” 來替代 “++”

spam = 0
spam += 1

12、錯誤地調用類中的方法

class Foo:
    def method1():
        print('m1')
    def method2(self):
        print("m2")

a = Foo()
a.method1()

導致:TypeError: method1() takes 0 positional arguments but 1 was given

method1 是 Foo 類的一個成員方法,該方法不接受任何參數,調用 a.method1() 相當于調用 Foo.method1(a),但 method1 不接受任何參數,所以報錯了。正確的調用方式應該是 Foo.method1()。

以上就是python中一些常見的錯誤的詳細內容,更多請關注億速云其它相關文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

阿拉尔市| 罗田县| 宁国市| 台江县| 临朐县| 始兴县| 即墨市| 武宁县| 新乐市| 旬邑县| 东源县| 石家庄市| 阜康市| 南平市| 嘉义市| 明溪县| 开阳县| 柳河县| 浦城县| 北碚区| 蕲春县| 蒙山县| 玛沁县| 鲁甸县| 博白县| 柘城县| 潮州市| 常州市| 安吉县| 沁源县| 叶城县| 泌阳县| 正蓝旗| 靖远县| 茂名市| 怀宁县| 鹤庆县| 富阳市| 刚察县| 赤峰市| 钦州市|