 
		weixin_慕虎5187330
2022-06-11 21:40
template='Life is {s},you need {p}'
short='short',Python='Python'
result=template.format(s=short,p=Python)
print(result)
 
				template='Life is {s},you need {p}'
short='short';Python='Python'
result=template.format(s=short,p=Python)
print(result)
要么使用分号' ; ',要么换行。不能使用逗号
 
				第二行的代码 去掉逗号 分成两行
Python3 入门教程
164642 学习 · 1136 问题
相似问题