for i in range(1, 27):
temp=str(i)
print '%s'(temp.zfill(3))
Traceback (most recent call last):
File "<ipython console>", line 3, in <module>
TypeError: 'str' object is not callable
不知道为什么?</p>
因为我希望输出像这样:
001
002
..
021
...
所以我用zfill
. 但是python告诉我这是“str
对象不可调用”如何解决?