读示例程序代码时遇到的问题,看不懂end和sep参数。经过查找,基本弄清楚了。 sep:可以设置print中分割不同值的形式。应该是separation的缩写。 end:可以设置print打印结束时最后跟的字符形式。 具体看程序示例。
示例1,常规print输出
shoplist=['apple','mango','carrot','banana']
print("This is printed without 'end'and 'sep'.")
for item in shoplist:
print(item)
输出结果:
This is printed without 'end'and 'sep'.
apple
mango
carrot
banana
可以看到,没有参数时,每次输出后都会换行。 2. 示例2,设置end参数输出。
shoplist=['apple','mango','carrot','banana']
print("This is printed with 'end='$''.")
for item in shoplist:
print(item, end='$')
print('hello world')
输出结果:
This is printed with 'end='$''.
apple$mango$carrot$banana$hello world
可以看到每次输出结束都用end设置的参数$结尾,并没有默认换行。 3. 示例3,设置sep参数输出。
print("This is printed with 'sep='&''.")
for item in shoplist:
print(item,'another string',sep='&')
输出结果:
This is printed with 'sep='&''.
apple&another string
mango&another string
carrot&another string
banana&another string
可以看到,item值与‘another string’两个值之间用sep设置的参数&分割。由于end参数没有设置,因此默认是输出解释后换行,即end参数的默认值为\n(转义-换行符)。
参考文章:
[1] :https://www.cnblogs.com/owasp/p/5372476.html [2] : book:byte of python