首页  >  文章  >  后端开发  >  python print 按逗号或空格分隔的方法

python print 按逗号或空格分隔的方法

不言
不言原创
2018-05-02 14:16:379211浏览


这篇文章主要介绍了关于实现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