As I know, there are some elegant ways to print left and right justified string with filling. like this
str = "left_justified"
str.ljust(20, '0');
or
print "{0:{1}<20}".format(str, "=")
result will be
left_justified=====
what is the best way to print middle-justified string with filling