请使用两种format的方式打印字符串Life is short, you need Python。

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

慕设计0015676

2022-11-17 17:38

请使用两种format的方式打印字符串Life is short, you need Python
写回答 关注

2回答

  • qq_慕慕3296986
    2022-11-18 11:30:30
    一
    template = 'Life is short,you need {}'
    python = 'Python'
    result = template.format(python)
    print(result)
    二
    template = 'life is short,you need {a}'
    result = template.format(a='Python')
    print(result)


  • qq_慕慕3296986
    2022-11-18 11:28:30

    法一

    template = python = result = template.format(python)
    (result)


    法二

    template = result = template.format(=)
    (result)


Python3 入门教程(新版)

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

154167 学习 · 1075 问题

查看课程

相似问题