为了账号安全,请及时绑定邮箱和手机立即绑定

请使用两种format的方式打印字符串Life is short, you need Python。

请使用两种format的方式打印字符串Life is short, you need Python

正在回答

2 回答

一
template = 'Life is short,you need {}'
python = 'Python'
result = template.format(python)
print(result)
二
template = 'life is short,you need {a}'
result = template.format(a='Python')
print(result)


1 回复 有任何疑惑可以回复我~

法一

template = python = result = template.format(python)
(result)


法二

template = result = template.format(=)
(result)


0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

请使用两种format的方式打印字符串Life is short, you need Python。

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信