1. 程式人生 > >python學習002-Python print 輸出不換行

python學習002-Python print 輸出不換行

輸出內容 http lob 技術分享 pri bsp 分享 term ado

python中print之後是默認換行的,


如果我們不想換行,且不想講輸出內容用一個print函數輸出時,就需要改變print默認換行的屬性,


方法如下:

print('contents', end='')


end就表示print將如何結束,默認為end="\n"(換行)


舉例:

技術分享圖片


讓print輸出不換行:


技術分享圖片

python學習002-Python print 輸出不換行