python print 格式化输出
使用print可以输出的类型有:字符串、整数、浮点数及精度控制。 1.格式化输出整数 python print也支持参数格式化,与C言的printf似: 1strHello = "the length of (%s) is %d" %('Hello World',len('Hello World')) 2print strHello 3#输出果:the length of (Hello World) is 11 2.格式化输出16制整数 1nHex = 0x20 2#%x --- hex 十六进制 3#%d --- dec 十进制 4#%d --- oct 八进制 5print "nHex = %x,nDec = %d,nOct = %o" %(nHex,nHex,nHex) 6……