Re: Format Code Repeat Counts?

2009-08-14 Thread jschwab
Thanks all! That was most helpful and informative. Best, Josiah -- http://mail.python.org/mailman/listinfo/python-list

Format Code Repeat Counts?

2009-08-12 Thread jschwab
Are repeat counts supported Python's str.format() in some fashion? In Fortran my format strings can have repeat counts. write(*, fmt="3F8.3") [1, 2, 3] 1.000 2.000 3.000 I don't think printf-style format codes, which is what'd I'd previously used in Python, allow for repeat counts. As a