输出不固定的内容什么意思

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

慕数据4134676

2022-08-02 22:01

输出不固定的内容什么意思


写回答 关注

1回答

  • weixin_慕村6176323
    2023-04-09 23:24:38

    .format 的意思是指可以任意替代某一个位置

    例:第一种

    print('hello',{}.format('girl'))####输出结果:hello,girl

    第二种

    print('{},girl'.format('hello'))####输出结果:hello,girl

    注:{}代表空字典常常与.format连用

Python3 入门教程(新版)

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

154175 学习 · 1075 问题

查看课程

相似问题