python的基本格式化输出

Posted 笛在月明楼

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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的基本格式化输出的主要内容,如果未能解决你的问题,请参考以下文章

学习笔记:python3,代码片段(2017)

Python基本格式化输出

Python基本格式化输出

Python学习5——基本格式化输出

2. Python中的基本输入输出格式化

python输出格式化及函数format