#方法1 template="Life is short,{} " data="you need Python." result=template.format(data) print(result)
#方法2 template="Life is short,{a} " short="you need Python." result=template.format(a=short) print(result)
template="Life is short,{} "
data="you need Python."
result=template.format(data)
print(result)
不要全部写在一行啊
谢谢,解决了