String formatting: Right justify and Left justify
integerValue = 4237 print "Right justify integer (%8d)" % integerValue print "Left justify integer (%-8d)\n" % integerValue