convert ints in a range to strings
Paul Rubin
http
Wed Sep 17 19:30:43 EDT 2003
More information about the Python-list mailing list
Wed Sep 17 19:30:43 EDT 2003
- Previous message (by thread): convert ints in a range to strings
- Next message (by thread): convert ints in a range to strings
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
hokieghal99 <hokiegal99 at hotmail.com> writes: > ------------------------------ > a="192." > b="168." > c="1." > r = range(256) > for r in r: > print a + b + c + r for r in range(256): print "192.168.1.%d" % r
- Previous message (by thread): convert ints in a range to strings
- Next message (by thread): convert ints in a range to strings
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list