String method: With a minor replacement
quote = "Python is easy to use."
print "Original quote:"
print quote
print "\nWith a minor replacement:"
print quote.replace("five", "millions of")
print "\nOriginal quote is still:"
print quote
Related examples in the same category