python 字符串的显示

本文对比了Shell脚本和Perl中变量内插的便捷性,并介绍了Python中实现类似功能的不同方法,包括字符串拼接、格式化字符串等。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

做个小总结:
可能是我还没找到更好的方法,但是小遗憾的是,python似乎目前无法支持类似shell脚本,perl
所支持的标量内插,所以在显示的时候无法像下面,这种个人感觉,最清晰,方便的方法。
比如,用户输人2个变量‘basketball', 'swimming', shell或者per可以如下显示出 I love basketball and swimming the best.
#shell
input = 'basketball'
input2 = 'swimming'
print 'I love $input and $input2 the best'
#perl
$input = 'basketball'
$input2 = 'swimming'
print 'I love $input and $input2 the best'
那么python 中如何显示呢,有如下方法,按需选择吧,希望以后能直接支持类似sell脚本的显示方法,把$看作转义符:)
 1 import sys
 2 input = sys.argv[1]
 3 input2 = sys.argv[2]
 4 
 5 = 'I love ' + input + ' and ' + input2 + ' the best'
 6 print(s)
 7 
 8 = 'I love %s and %s the best'%(input, input2)
 9 print(s)
10 
11 params= {'input': input, 'input2': input2 }
12 = 'I love %(input)s and %(input2)s the best'%params
13 print(s)
14 
15 
16 from string import Template
17 = Template('I love $input and $input2 the best')
18 =s.substitute(input=input, input2=input2)
19 print(s)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值