[转载] python[1]-print中的sep、end参数

参考链接: Python | print()中的sep参数

读示例程序代码时遇到的问题,看不懂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

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值