首頁  >  文章  >  後端開發  >  python print 以逗號或空格分隔的方法

python print 以逗號或空格分隔的方法

不言
不言原創
2018-05-02 14:16:379258瀏覽


這篇文章主要介紹了關於實現python print 按逗號或空格分隔的方法,有著一定的參考價值,現在分享給大家,有需要的朋友可以參考一下

python print 以逗號或空格分隔的方法

1)按,分隔##

a, b = 0, 1 
while b < 1000: 
 print(b, end=&#39;,&#39;) 
 a, b = b, a+b 
1,1,2,3,5,8,13,21,34,55,89,144,233,377,610,987,

2 )以空格分隔

a, b = 0, 1 
while b < 1000: 
 print(b, end=&#39; &#39;) 
 a, b = b, a+b 

1 1 2 3 5 8 13 21 34 55 89 144 233 377 610 987

3)print的用法

print(...)
 print(value, ..., sep=&#39; &#39;, end=&#39;\n&#39;, file=sys.stdout, flush=False)
 
 Prints the values to a stream, or to sys.stdout by default.
 Optional keyword arguments:
 file: a file-like object (stream); defaults to the current sys.stdout.
 sep: string inserted between values, default a space.
 end: string appended after the last value, default a newline.
 flush: whether to forcibly flush the stream.

相關推薦:《

Python教程

以上是python print 以逗號或空格分隔的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn