Lorsque j'exécute le code suivant dans Python 2.5.2:
for x in range(1, 11):
print '{0:2d} {1:3d} {2:4d}'.format(x, x*x, x*x*x)
J'obtiens:
Traceback (most recent call last):
File "<pyshell#9>", line 2, in <module>
print '{0:2d} {1:3d} {2:4d}'.format(x, x*x, x*x*x)
AttributeError: 'str' object has no attribute 'format'
Je ne comprends pas le problème.
D' dir('hello')
il n'y a pas d' format
d'attribut.
Comment puis-je résoudre ce problème?