标签:user 字符 数字 orm obb int 浮点数 键值对 print
#!/user/bin/python
# -*- coding:utf-8 -*-
#1、%s字符串格式化
print("i am %s my hobby is zd " % "xq")
#2、%d只能接受数字
#3、%f浮点数
#4、打印百分比
#5、键值对拼接
#6、format
tpl = "i am {},age{},{}".format("zd","25","xq")
print(tpl)
#7、
标签:user 字符 数字 orm obb int 浮点数 键值对 print
原文地址:https://www.cnblogs.com/zhang-da/p/10952173.html