String Interpolation

Instead of using string concatenation an often easier way is to use string interpolation.

>>> name = 'Al'
>>> age = 4000
>>> 'My name is %s. I am %s years old.' % (name, age)
'My name is Al. I am 4000 years old.'