码迷,mamicode.com
首页 > 编程语言 > 详细

Python之路(五)-->> 格式化

时间:2018-10-15 14:44:24      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:键值   接收   pytho   形式   结果   字符串   style   浮点   code   

在Python中格式化的方式有两种,一种是%,另外一种是format()格式化。

-----------------------------------------------------------(分隔线)--------------------------------------------------------------

一、%格式化

  %s和%d,%s用来接收字符串,而%d用来接收数字的。例:

tp = "i am %s,age %d" %(tom, 12)
print(tp)

#执行结果:i am tom,age 12

从执行结果我们可以看出“tom”被替换到%s的位置,12被替换到了%d的位置。当然还有其他的比如:%f浮点数,%.2f%%百分比。例:

tp1 = "percent %f" % 99.22354
tp2 = "Percent %.2f%%" % 99.69545
print(tp1)
print(tp2)

#执行结果:
#                percent 99.223540
#                Percent 99.70%        

当然 % 还有其他形式的格式化,例:

tp = "i am %(name)s,age %(age)d." % {"name": "tom", "age": 12}
print(tp)

#执行结果:i am tom,age 12.
tp = "i am %(name)+20s,age %(age)d." % {"name": "tom", "age": 12}
print(tp)

#执行结果:i am                  tom,age 12.

------------------------------------------------------------(分隔线)--------------------------------------------------------------

二、format()

  format是用{}来接收内容的,当然我们可以指定参数。例:

tp = "i am {},age {}".format(tom, 12)
tp1 = "i am {1},age {0}".format(tom, 12)
print(tp)
print(tp1)

#执行结果:
#                i am tom,age 12
#                i am 12,age tom

  format()还可以用类似于键值对的方式来格式化,例:

tp = "i am {name},age {age}".format(name = tom, age = 12)
print(tp)

#执行结果:i am tom,age 12

 

Python之路(五)-->> 格式化

标签:键值   接收   pytho   形式   结果   字符串   style   浮点   code   

原文地址:https://www.cnblogs.com/liuzhaoling/p/9790214.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!