python中格式化字符 %% ,可以输出%,如下:
>>> print '%.2f%%' % (2.322)

2.32%

>>> print '%d%%' % 23

23%