I've come across lines like this in Python:
print "Let's talk about %s." % my_name
However, I've seen cases in Ruby where these two have equivalent output:
print "Let's talk about #{my_name}."
print "Let's talk about %s." % my_name"
Is there only one way to print the same line in Python?