python中print的几种用法

Posted muzizongheng

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python中print的几种用法相关的知识,希望对你有一定的参考价值。

python中的print有几种常用的用法:
1. print("first example")
2. print("second", "example")
3. print("%s"%("third example"))
4.   print("%(forth)s"%'forth':'forth example')
5. fifth = "fifth example" print("%(fifth)s"%vars())

以上是关于python中print的几种用法的主要内容,如果未能解决你的问题,请参考以下文章

小谈python里 列表 的几种常用用法

Python遍历字典的几种方式

python中取整的几种方法

详解Java中super的几种用法并与this的区别

Python正则表示式的几种匹配用法

Python:list列表中元素输出的几种情况