@init() takes 0 positional arguments but 1 was given
a:這位博主介紹的比較詳細,歡迎閱讀。
@name 『xrange』 is not defined
a:在python 3中,range()與xrange()合併為range( )。
@map object at 0x000000000a0c0da0
@missing parentheses in call to 『print』
a:python3 的print需要括號 print(『hellw world』)
a:print(2**8)
@』int』 object is not callable
a:錯誤是int型別不能在函式中呼叫
a:最後關閉ide,然後開啟,這個錯誤才消失。
@cannot use a string pattern on a bytes-like object
a:需要強制型別轉換一下,str(object)
@no model named urllib2
a:urllib2在python3已拆分更名為urllib.request和urllib.error
@name urlopen is not defined
a:from urllib.request import urlopen
@unexpected indent
a:比較常見的語法錯誤,意外縮排
@must use keyword argument for key function
a:函式的關鍵值給錯了,比如倒序排序print (sorted([『bob』, 『about』, 『zoo』, 『credit』],key=com_flag,reverse=true))
關鍵字給錯了就會報錯。
@typeerror: print99() takes 0 positional arguments but 1 was given
a:函式定義沒有引數,但是你呼叫時給了乙個引數。
@typeerror: 『module』 object is not callable
a:這個資訊是說我試圖把」request」這個模組作為乙個函式來呼叫,但它卻無法呼叫。我這樣使用了request(object)。
python3 6學習十四 提示和傳遞
本節繼續熟悉ar 引數變數,並於input一起使用。習題中prompt 可以變形prompt 單引雙引沒區別只是書寫風格。上次遺留問題 script,first,second,third ar 是四個變數為什麼使用者只需要輸入3個值,為什麼第乙個變數script是讀取指令碼名字。大概理解是ar 引數...
python3 6 爬蟲例子
importurllib.request importre importos importurllib.erroraserror url 請求 request urllib.request.request url 爬取結果 response urllib.request.urlopen reques...
Mac 解除安裝Python3 6
mac 自帶的 python 已經能夠滿足我們的需要了,因此很多同學在安裝完 python 之後,又想要將其刪除,或者稱之為解除安裝。對於刪除 python,我們首先要知道其具體都安裝了什麼,實際上,在安裝 python 時,其自動生成 1 python framework,即 python 框架 ...