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

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

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

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

结果输出如下:

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

其结果为:

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

云海天教程网,大量的免费python教程,欢迎在线学习!

来源:PY学习网:原文地址:https://www.py.cn/article.html

hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » python sep啥意思