python有两种方式可以格式化一种是用%s,一种使用format(2.6)进入的,从下面的代码可以看出,效果差不多。
name = 'edward' age = 27 print("My name is %s and I'm %s years old" % (name, age)) #My name is edward and I'm 27 years old print("My name is {} and I'm {} years old".format(name, age)) # My name is edward and I'm 27 years old
第一种方法值得注意的是:
s = string s是万能的,可以代替d和f
d = digit
f = float