vote up 3 vote down star
>>> print 'there are {0:10} students and {1:10} teachers'.format(scnt, tcnt)
there are        100 students and         20 teachers

What would be the code so that the output became:

there are 100        students and 20         teachers

Thanks.

flag

1 Answer

vote up 9 vote down check
print 'there are {0:<10} students and {1:<10} teachers'.format(scnt, tcnt)

While the old % operator uses - for alignment, the new format method uses < and >

link|flag

Your Answer

Get an OpenID
or

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