1、常用的格式符号
2、input函数
3、在程序中,看到了%这样的操作符,这就是python中的格式化输出
age = 18
name = "xiaohua"
print("我的姓名是%s,年龄是%d"%(name,age))
4、
5、
6、
8、
9、
10、