8
>>> print 'there are {0:10} students and {1:10} teachers'.format(scnt, tcnt)
there are 100 students and 20 teachers
¿Cuál sería el código para que la salida se convirtió en:str.format() -> cómo Justifica a la izquierda
there are 100 students and 20 teachers
Gracias.