String Python Tutorial

from string  import Template
s = Template("It's ${x}tastic!")
s.substitute(x='slurm')
print s