String formatting: Right justify and Left justify : Output Format « Development « Python
- Python
- Development
- Output Format
String formatting: Right justify and Left justify

integerValue = 4237
print "Right justify integer (%8d)" % integerValue
print "Left justify integer (%-8d)\n" % integerValue
Related examples in the same category