Python 的一些執行小錯誤 新手技能

2021-08-28 03:09:50 字數 919 閱讀 3424

1.syntaxerror :invalid syntax

reason a: 沒有在 if , elif , else , class ,def,for , while 宣告末尾新增  :

reason b:使用了 賦值操作符= 而不是 等於==

2.「indentationerror:unexpected indent」、 「indentationerror:unindent does not match any outer indetation level」、  「indentationerror:expected an indented block」

reason:縮排量使用錯誤

3.typeerror: 'list' object cannot be interpreted as an integer

reason : 在 for 迴圈語句中忘記呼叫 len() 

4.typeerror: 'str' object does not support item assignment

reason :修改了string的值

5.typeerror: can't convert 'int' object to str implicitly

reason :連線了非字串值與字串

6.syntaxerror: eol while scanning string literal

reason : 在字串首尾沒有加引號

7.indexerror: list index out of range

reason:引用超過list最大索引

egit的乙個小錯誤

用egit和堅果雲搭配開發環境,配置egit時提示乙個錯誤 the current branch is not configured for pull.no value for key branch.master.merge found in configuration google一番後發現原來是...

ntp的乙個小錯誤

root localhost ntpdate 10.128.14.25 3 apr 21 05 05 ntpdate 1506 the ntp socket is in use,exiting 收到此錯誤訊息的原因是由於 xntpd 已經繫結到了該 socket。執行 ntpdate 時,它會首先進...

python 變數 列表容易出的小錯誤。

person team for i in range 3 x person x id i team 0 name jack team 1 name pony team 2 name alex print team 1 請問輸出是什麼樣?12 345注意python中變數 賦值和c中的引用是一樣的,引...