解决python打印%号和%format输出问题
>>> print('%s' %'1')
1
>>> print('%s%' %'1')
Traceback (most recent call last):
File "<pyshell#4>", line 1, in <module>
print('%s%' %'1')
ValueError: incomplete format
>>> print('%s' %解决python打印%号和%format输出问题
>>> print('%s' %'1')
1
>>> print('%s%' %'1')
Traceback (most recent call last):
File "<pyshell#4>", line 1, in <module>
print('%s%' %'1')
ValueError: incomplete format
>>> print('%s' %