I'm figuring out some basics in python, and somehow I don't get things to work.
string = 'water'
string.replace('a','u')
print(string)
I want this script to print out wuter. Yet even with the string.replace it still prints out water. What am I doing wrong?