Hi,
the solution is a little more involved, if you want to "right justify"
each of the
four components of IP number:
import sys
try:
.    sIPnumber=sys.argv[1]
except:
 .   sys.exit(-1)
list_lPcomponents=sIPnumber.split('.')
sRJ=''"
for n in list_IPcomponents:
.     sRJ+=n.rjust(3)+'.'
print sRJ[:-1]
Bye.

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to