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

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

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


提问者:慕数据4134676 2022-08-02 22:01

个回答

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

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

    例:第一种

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

    第二种

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

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