Python3 输出
Posted yanshuai0922
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python3 输出相关的知识,希望对你有一定的参考价值。
1.打印字符串
print("My name is %s" %("Alfred.Xue")) #输出效果: My name is Alfred.Xue
2.打印整数
print("I am %d years old." %(25)) #输出效果: I am 25 years old.
3.打印浮点数
print ("His height is %f m"%(1.70)) #输出效果: His height is 1.700000 m
以上是关于Python3 输出的主要内容,如果未能解决你的问题,请参考以下文章