课程
/后端开发
/Python
/Python3 入门教程(新版)
输出不固定的内容什么意思
2022-08-02
源自:Python3 入门教程(新版) 3-7
正在回答
.format 的意思是指可以任意替代某一个位置
例:第一种
print('hello',{}.format('girl'))####输出结果:hello,girl
第二种
print('{},girl'.format('hello'))####输出结果:hello,girl
注:{}代表空字典常常与.format连用
举报
python3入门教程,让你快速入门并能编写简单的Python程序
1 回答没看懂输出结果的顺序是什么意思
1 回答 != 是什么意思
2 回答#==>是什么意思?
2 回答print 是什么意思
2 回答len是什么意思