python寫程式碼怎麼跳到下一行

dav2100發表於2021-09-11

python寫程式碼怎麼跳到下一行

Python中一般是一行寫完所有程式碼,如果遇到一行寫不完需要換行的情況,有兩種方法:

1.在該行程式碼末尾加上續行符“ ”(即空格+);

test = 'item_one' 
'item_two' 
  'tem_three'

輸出結果:

'item_oneitem_twotem_three'

2.加上括號,() {}  []中不需要特別加換行符:

test2 = ('csdn '
'cssdn')

輸出結果:

csdn cssdn

if...and:

if (where there is a will and
there is a way)

多次未輸出結果

test3 =('Hello'
' '
'world')

輸出結果:

Hello world

推薦學習《》

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/4479/viewspace-2835254/,如需轉載,請註明出處,否則將追究法律責任。

相關文章