Python 輸出不換行

simple1_6的暱稱用不了發表於2017-10-10

python 輸出不換行
python 3的寫法是: print(‘hello’, end=”)

舉個例子:

>>> def clear():
print('hello ',end='')
print('world')    
>>> clear()
hello world

相關文章