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)
要么使用分号' ; ',要么换行。不能使用逗号
第二行的代码 去掉逗号 分成两行