问答详情
源自:3-7 Python的字符串format

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

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

提问者:慕设计0015676 2022-11-17 17:38

个回答

  • 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)