当前位置:首页 > 云计算 > 正文内容

python sep啥意思

2022-05-04 03:13:37云计算1

全称为Separate意为分开、隔开。

用于print两个元素时自定义间隔符(默认为两个空格)

关键字参数sep是实现分隔符,比如多个参数输出时想要输出中间的分隔字符。

print(1,2,3,sep=',',end='\r\n')
print(1,2,3,sep='',end='\r\n')

结果输出如下:

1,2,3
123
print("file\n","abc","bcd","fff\n","poi")
print("-------------")
print("file\n","abc","bcd","fff\n","poi",sep='')
print("-------------")
print("file\n","abc","bcd","fff\n","poi",sep='')
print("-------------")

其结果为:

file
abcbcdfff
poi-------------file
abcbcdfff
poi-------------file
abcbcdfff
poi-------------

python学习网,大量的免费python视频教程,欢迎在线学习!

本网站文章仅供交流学习 ,不作为商用, 版权归属原作者,部分文章推送时未能及时与原作者取得联系,若来源标注错误或侵犯到您的权益烦请告知,我们将立即删除.

本文链接:https://www.xibujisuan.cn/9806.html

标签: Python