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

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

浅夏淡忆9037619

2022-03-01 16:42

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

写回答 关注

1回答

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

Python3 入门教程(新版)

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

154167 学习 · 1075 问题

查看课程

相似问题