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

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

请使用两种format的方式打印字符串Life is short, you need Python,能问问怎么写吗?

提问者:浅夏淡忆9037619 2022-03-01 16:42

个回答

  • qq_慕粉2169871
    2022-03-02 08:15:37

    第一种


    print(

    Life is short, you need Python



    第二种

    t=

    'Life is short{}'

    B=t.format(

    , you need Python

    )


    print(B)