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