vote up 2 vote down star

I am using Python 2.5.2

>>> for x in range(1,11):
print '{0:2d} {1:3d} {2:4d}'.format(x, x*x, x*x*x)

Traceback (most recent call last): File "", line 2, in print '{0:2d} {1:3d} {2:4d}'.format(x, x*x, x*x*x) AttributeError: 'str' object has no attribute 'format'

I am not getting the problem

When i did dir('hello') there was no format attribute.

How can i solve this ?

flag

27% accept rate

5 Answers

vote up 8 vote down

format method was introduced in python 3.0 and backported only to 2.6

link|flag
Well, it not the answer for the asked question. Totally nothing about the solution. – Nikolay Vyahhi Jul 10 at 18:57
wtf? his problem is that he's using method that is not supported. he can stop doing that and the problem will go away. – SilentGhost Jul 10 at 20:00
why the downvote? – SilentGhost Oct 5 at 16:40
vote up 4 vote down

I believe that is a Python 3.0 feature, although it is in version 2.6. But if you have a version of Python below that, that type of string formatting will not work.

If you are trying to print formatted strings in general, use Python's printf-style syntax through the % operator. For example:

print '%.2f' % some_var
link|flag
vote up 4 vote down

For Python versions below 2.6, use the % operator.

You should also be aware that this operator can interpolate by name from a mapping, instead of just positional arguments:

>>> "%(foo)s %(bar)d" % {'bar': 42, 'foo': "spam", 'baz': None}
'spam 42'

In combination with the fact that the built-in vars() function returns attributes of a namespace as a mapping, this can be very handy:

>>> bar = 42
>>> foo = "spam"
>>> baz = None
>>> "%(foo)s %(bar)d" % vars()
'spam 42'
link|flag
vote up 3 vote down

Which Python version do you use?

Edit For Python 2.5, use "x = %s" % (x) (for printing strings)

If you want to print other types, see here.

link|flag
Python 2.5.2... – rejinacm Apr 27 at 9:01
1  
str.format() only works in 2.6+ and py3k – dex Apr 27 at 9:03
vote up -3 vote down

I get no error while executing this. double check.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.