第7句哪里错了是什么问题,想法思路错了吗
# Enter a code
template = 'Life {0} ,you {1}.'
result = template.format('is short','need Python')
print(result) #
template ='Life {a},you{b}'
a = 'is short'
b ='need Python'
result = template.format(a = is short,b = need Python)
print(result)#