问答详情
源自:9-6 Python函数使用默认参数

请问hello跑到哪里去了

temp3='Life is {1},you need {2}.'

result3=temp3.format('hello','short','python')

print(result3)


#这个程序里打印的hello跑到哪里去了?

提问者:慕粉4438442 2020-09-14 21:35

个回答

  • 白小九
    2020-09-18 13:46:28

    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)