python_ref_string_replace_3.py:
x
 
txt = "one one was a race horse, two two was one too."
x = txt.replace("one", "three", 2)
print(x)