小白兔cai
2021-03-21 20:47
#方法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)
不要全部写在一行啊
谢谢,解决了
Python3 入门教程(新版)
154167 学习 · 1075 问题
相似问题