python sep啥意思

2020/09/27 07:48

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

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

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

print(1, 2, 3, sep = ',', end = 'rn')
print(1, 2, 3, sep = ' ', end = 'rn')

结果输出如下:

1,2,3
1 2 3
print("filen","abc","bcd","fffn","poi")
print("-------------")
print("filen","abc","bcd","fffn","poi",sep='')
print("-------------")
print("filen","abc","bcd","fffn","poi",sep=' ')
print("-------------")

其结果为:

file
 abc bcd fff
poi-------------file
abcbcdfff
poi-------------file
 abc bcd fff
poi-------------

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

免费直播

    精选课程 更多

    注册电脑版

    版权所有 2003-2020 广州环球青藤科技发展有限公司