python中sep是什么意思_pythonsep啥意思全称为Separate意为分开、隔开。
⽤于print两个元素时⾃定义间隔符(默认为两个空格)
关键字参数sep是实现分隔符,⽐如多个参数输出时想要输出中间的分隔字符。print(1, 2, 3, sep = ',', end = '
')
print(1, 2, 3, sep = ' ', end = '
')
结果输出如下:1,2,3
1 2 3print("file
","abc","bcd","fff
","poi")
print("-------------")
print("file
","abc","bcd","fff
","poi",sep='')
print("-------------")
parameter是什么意思啊print("file
","abc","bcd","fff
","poi",sep=' ')
print("-------------")
其结果为:file
abc bcd fff
poi-------------file
abcbcdfff
poi-------------file
abc bcd fff
poi-------------
云海天教程⽹,⼤量的免费python教程,欢迎在线学习!
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论