這樣寫為什么不對(duì)
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)
2022-06-11
舉報(bào)
2022-07-16
template='Life is {s},you need {p}'
short='short';Python='Python'
result=template.format(s=short,p=Python)
print(result)
要么使用分號(hào)' ; ',要么換行。不能使用逗號(hào)
2022-06-15
第二行的代碼 去掉逗號(hào) 分成兩行