慕数据4134676
2022-08-02 22:01
输出不固定的内容什么意思
.format 的意思是指可以任意替代某一个位置
例:第一种
print('hello',{}.format('girl'))####输出结果:hello,girl
第二种
print('{},girl'.format('hello'))####输出结果:hello,girl
注:{}代表空字典常常与.format连用
Python3 入门教程(新版)
154175 学习 · 1075 问题
相似问题
回答 1
回答 2