python如何讓兩個(gè)print函數(shù)不分行?
print 函數(shù)有如下的形式:print([object,...][,seq=' '][,end='\n'][,file=sys.stdout])
我們?cè)谑褂胮rint()函數(shù)時(shí),并不希望輸出結(jié)束后自動(dòng)換行,因此,我們可以按照下面的方法來做
1.print()指定結(jié)束符print('hello',end='')
print('world')
#result:helloworld
當(dāng)print()函數(shù),指定end參數(shù)為空字符后,print()函數(shù)就不再主動(dòng)添加換行符了。并且,hello和world之間也不存在任何空格。a = 'first line'
b = 'second line'
c = 'third line'
print(a,end='\n\n')
print(b)
print(c,end='!')
我們可以利用指定結(jié)束符的方法,靈活控制換行行數(shù)和結(jié)尾字符。
2.print()函數(shù)
知道了如何實(shí)現(xiàn)輸出不換行,下面我們來看一下原理。
print()函數(shù)的形式是:print(*objects, sep=' ', end='\n', file=sys.stdout,flush=False)
objects -- 復(fù)數(shù),表示可以一次輸出多個(gè)對(duì)象。輸出多個(gè)對(duì)象時(shí),需要用 , 分隔。
sep -- 用來間隔多個(gè)對(duì)象,默認(rèn)值是一個(gè)空格。
end -- 用來設(shè)定以什么結(jié)尾。默認(rèn)值是換行符 \n,我們可以換成其他字符串。
file -- 要寫入的文件對(duì)象。
flush--是否要強(qiáng)行刷新stream