If I want to make my formatted string dynamically adjustable, I can change the following code from
print '%20s : %20s' % ("Python", "Very Good")
to
width = 20
print ('%' + str(width) + 's : %' + str(width) + 's') % ("Python", "Very Good")
However, it seems that string concatenation is cumbersome here. Any other way to simplify things?