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

不言
發布: 2019-04-01 15:50:52
原創
9236 人瀏覽過


這篇文章主要介紹了關於實現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中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!