慕仔5249097
2023-03-15 17:53
template1 = 'Life is {1},'
template2 = 'you need {a}'
k423 = 'python'
print(template1.format('short'),template2.format(a=k423))
这是怎么回事?
template1 = 'Life is {},'
template2 = 'you need {a}'
k423 = 'python'
print(template1.format('short'),template2.format(a=k423))
这样就可以
怎么才能使用两个模板,还是说不行?
Python3 入门教程(新版)
154159 学习 · 1075 问题
相似问题