1 #如何格式化输出字符串 2 print("{0}是一只{1}".format("我","猫")) 3 print("{a}是一只{b}".format(a="我",b="猫")) 4 print("{0:.1f}{1}".format(3.1415,"GB")) 5 6 #使用%格式化输出 7 print("%c %c %c" % (97,98,99)) 8 print("%d" % 5) 9 print("%s" % "一条鱼") 10 print("%o" % 10) 11 print("%x" % 10) 12 print("%X" % 10) 13 print("%f" % 4.34) 14 print("%.1f" % 4.4214) 15 print("%e" % 10000000000) 16 print("%.1e" % 10000000000)