求大佬解答

来源:3-7 Python的字符串format

慕仔5249097

2023-03-15 17:53

template1 = 'Life is {1},'

template2 = 'you need {a}'

k423 = 'python'

print(template1.format('short'),template2.format(a=k423))

这是怎么回事?

http://img1.mukewang.com/641195510001fba412930634.jpg

写回答 关注

2回答

  • 天堂没有神
    2024-07-04 22:53:09

    template1 = 'Life is {},'

    template2 = 'you need {a}'

    k423 = 'python'

    print(template1.format('short'),template2.format(a=k423))

    这样就可以


  • 慕仔5249097
    2023-03-15 17:55:38

    怎么才能使用两个模板,还是说不行?

    枫_筝

    template = 'Life is short,{}' A = 'you need Python' result = template.format(A) print(result) template = 'Life is short,{}' result = template.format('you need Python') print(result)

    2023-07-26 17:25:48

    共 1 条回复 >

Python3 入门教程(新版)

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

154159 学习 · 1075 问题

查看课程

相似问题