python的基本格式化输出

age = 18
weight = 64
print("我的名字是%s,我的国籍是%s"%("小张","中国"))
print("我的年龄:%d岁"%age)
print("我的年龄:%d岁,体重是%dkg"%(age,weight))

print("aaa","bbb","ccc")
print("www","baidu","com",sep=".")

print("hello",end="")
print("world",end="\t")
print("python",end="\n")
print("end")

python的基本格式化输出

 以上是一些比较常用的格式化输出

相关推荐