欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

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

程序员文章站 2022-03-14 17:08:50
...
这篇文章主要介绍了关于实现python print 按逗号或空格分隔的方法,有着一定的参考价值,现在分享给大家,有需要的朋友可以参考一下

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

1)按,分隔

a, b = 0, 1 
while b < 1000: 
 print(b, end=',') 
 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=' ') 
 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=' ', end='\n', 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 按逗号或空格分隔的方法的详细内容,更多请关注其它相关文章!