Hello: In CPython I have the next result: >>>print "%0*d" % (6, 23) 000023
In IP I have the next: >>>print "%0*d" % (6, 23) Traceback (most recent call last): File , line 0, in input##52 NotImplementedError: * for precision >>> Or in CPyhton: >>>print '"%0*s", "%-*s"' % (5, "Hola", 10, "Iron") " Hola", "Iron " >>> in IP: >>>print '"%0*s", "%-*s"' % (5, "Hola", 10, "Iron") Traceback (most recent call last): File , line 0, in input##54 NotImplementedError: * for precision >>> Best regards, _________________________________________________________________ MSN Amor: busca tu ½ naranja http://latam.msn.com/amor/ _______________________________________________ users mailing list [email protected] http://lists.ironpython.com/listinfo.cgi/users-ironpython.com
