string1 = "One, one, one, one, one, one"print "Original:", string1print 'Replaced "one" with "two":', \ string1.replace( "one", "two" )print "Replaced 3 maximum:", string1.replace( "one", "two", 3 )