本文總結了一些簡單基本的輸出格式化形式,下面話不多說了,來看看詳細的介紹吧。
一、印出字串
>>> print "I'm %s" % ("jihite") I'm jihite
二、印出整數
>>> print "I'm %d years old" % (17) I'm 17 years old
三、列印浮點數
>>> print "π=%f" % (3.1415926) π=3.141593
四、列印浮點數(指定保留小數點位數)
>>> print "π=%.3f" % (3.1415926) π=3.142
五、指定佔位元符寬度
>>> print "NAME:%8s AGE:%8d WEIGHT:%8.2f" % ("jihite", 17, 62.2) NAME: jihite AGE: 17 WEIGHT: 62.20
六、指定佔位符寬度(左對齊)
>>> print "NAME:%-8s AGE:%-8d WEIGHT:%-8.2f" % ("jihite", 17, 62.2) NAME:jihite AGE:17 WEIGHT:62.20
七、指定佔位元符(只能用0當佔位符)
>>> print "NAME:%-8s AGE:%08d WEIGHT:%08.2f" % ("jihite", 17, 62.2) NAME:jihite AGE:00000017 WEIGHT:00062.20
八、科學計數法
>>> format(0.0000023, '.2e') '2.30e-06' >>> format(0.23, '.2e') '2.30e-01'
以上是使用python常見的格式化輸出原因的詳細內容。更多資訊請關注PHP中文網其他相關文章!