Print with other strings
string1 = "Camelot" string2 = "place" # python2 print "Let's not go to %s. It's a silly %s." % (string1, string2) # python3 print("Let's not go to %s. It's a silly %s." % (string1, string2))