请问hello跑到哪里去了

来源:9-6 Python函数使用默认参数

慕粉4438442

2020-09-14 21:35

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

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

print(result3)


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

写回答 关注

1回答

  • 白小九
    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)


Python3 入门教程(新版)

python3入门教程,让你快速入门并能编写简单的Python程序

154174 学习 · 1075 问题

查看课程

相似问题