点击查看【bilibili】

    学习代码如下:

    1. print('hello world')
    2. name = 'rose'
    3. print('我的名字叫%s' % name)
    4. print(f'我的名字叫{name}')

    运行结果如下:
    image.png

    图片解释
    image.png