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


本文摘自php中文网,作者不言,侵删。

这篇文章主要介绍了关于实现python print 按逗号或空格分隔的方法,有着一定的参考价值,现在分享给大家,有需要的朋友可以参考一下

1)按,分隔

1

2

3

4

5

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)按空格分隔

1

2

3

4

5

6

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的用法

1

2

3

4

5

6

7

8

9

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 按逗号或空格分隔的方法的详细内容,更多文章请关注木庄网络博客!!

相关阅读 >>

Python中map是什么意思

【插入排序实现】Python

Python线程下使用锁该注意的地方

Python中的sample什么意思

cookie介绍和模拟登录演示

Python安装完后怎么用

windows下安装Python的xlsxwriter模块方法

Python操作excel详解

Python输入错误怎么删除

Python如何实现猜数字游戏

更多相关阅读请进入《Python》频道 >>




打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...