python語言常出錯的小知識

2021-10-19 05:17:24 字數 1513 閱讀 4304

關於python的賦值語句,常有的幾種形式:x=y=1 ;x=1;y=1 ;x,y=y,x。(其中的 x=(y=1) 不是正確的語句)

python語言中,縮排在程式中長度統一且強制使用

屬於python ide 的有: jupyter notebook 、pycharm、spyder(r studio 不屬於python。)

print

"hello world!"

以上語法顯示的錯誤是:

syntaxerror: missing parentheses in call to 'print
print

(eval

("1+1"))

print

(eval

("1"+1

))print

(eval

("1"

+"1"))

print(1

+1)

輸出結果:

>>

>

print

(eval

("1+1"))

2>>

>

print

(eval

("1"+1

))traceback (most recent call last)

: file ""

, line 1,in

typeerror: can only concatenate str

(not

"int"

) to str

>>

>

print

(eval

("1"

+"1"))

11>>

>

print(1

+1)2

>>

> a=

12>>

> a+

"34"

輸出結果:

>>

> a=

12>>

> a+

"34"

traceback (most recent call last)

: file ""

, line 1,in

typeerror: unsupported operand type

(s)for+:

'int'

and'str'

idle中建立新檔案的快捷鍵是 : ctrl+n

idle中將選中區域進行縮排的快捷鍵是: ctrl+]

idle中將選中區域取消縮排的快捷鍵是: ctrl+[

idle中選中區域注釋的快捷鍵是 : alt+3

idle中選中區域取消注釋的快捷鍵是 : alt+4

idle中選中區域的空格替換為tab的快捷鍵是 : alt+5

idle中選中區域的tab替換為空格的快捷鍵是 : alt+6

python小知識 Python小知識

1 python是一種解釋性語言,當程式執行時,一行一行的解釋,並執行 優點 除錯 很方便,開發效率高,並且可以跨平台 不但入門容易,而且將來深入下去,可以編寫那些非常非常複雜的程式。缺點 執行速度慢。python的種類 cpython ipython pypy jython ironpython ...

python小知識 python小知識

一 列表 l 1,2 m l l和m同時指向列表物件,內容為 1,2 l l 3,4 系統新增了乙個物件,內容為 1,2,3,4 l,m 1,2,3,4 1,2 l 1,2 m l l 3,4 對列表在原處做修改 l,m 1,2,3,4 1,2,3,4 二 python程式設計中的中文編碼問題 問題...

C語言 小知識

1.表示式的求值 初始值 x 1,y 1 z 1 求 x y z 答 從左到右順序依次求值,1 true 注意 因為 操作符的左運算元是true,所以沒有必要求值了.事實上c語言肯定不會繼續求值 有關規則,在按從左到右的順序對乙個邏輯表示式求值的時候,只要知道了它的實際結果,就不會對其餘部分求值.這...