temp3='Life is {1},you need {2}.'
result3=temp3.format('hello','short','python')
print(result3)
#这个程序里打印的hello跑到哪里去了?
hello 对应 {0},short 对应 {1},python 对应 {2}。
hello 对应 {0},short 对应 {1}, python 对应 {2}
你 temp3 里没有 {0},自然就不会打印 hello,建议改成:
temp3 = '{0}! Life is {1}, you need {2}' result3 = temp3.format('hello', 'short', 'python') print(result3)