加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 编程开发 > Python > 正文

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

发布时间:2020-12-16 21:02:40 所属栏目:Python 来源:网络整理
导读: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,end=' ') a,a+b 1 1 2 3 5 8 13 21 34 55 89 144 233 377 610 987 3)print的用法 print(...) print(value,...,sep='

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,end=' ') 
 a,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 print 按逗号或空格分隔的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持编程小技巧。

您可能感兴趣的文章:

  • Python中逗号的三种作用实例分析
  • 关于Python中空格字符串处理的技巧总结

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读