三引号
1、三引号注释: 程序中我使用#来做单行注释,可以使用三引号可以做多行注释。
三个引号能包含多行字符串,同时常常出现在函数的声明的下一行,来注释函数的功能,与众不同的地方在于,这个注释作为函数的一个默认属性,可以通过 函数名.__doc__ 来访问
2、三引号格式化输出:用print打印字符串时,三引号包含多行字符串,则原格式输出
In [2]: print """ ...: hello world ...: my name is dayun ...: I love you ...: """ hello world my name is dayun I love you
逗号
1、打印字符串变量时
In [3]: name = "dayun" In [4]: print "my name is",name my name is dayun
当然我们也可以使用格式化输出打印
In [5]: print "my name is %s" %name my name is dayun
2、print 后面加了个逗号(comma) , 这样的话 print就不会输出新行符而结束这一行跑到下一行去了。
name = "dayun" age = 18 print "my name is %s" % name , print "I‘m %d years of age" % age
运行结果:
~ python test.py my name is dayun I‘m 18 years of age
两个print打印出来的结果在同一行。
本文出自 “xiaoliuer” 博客,请务必保留此出处http://xiaoliuer.blog.51cto.com/11859529/1892281
原文地址:http://xiaoliuer.blog.51cto.com/11859529/1892281