how to try to replace a letter in string code example
Example: python change character in string
mytext = 'Hello Zorld'
mytext = mytext.replace('Z', 'W')
print mytext,
mytext = 'Hello Zorld'
mytext = mytext.replace('Z', 'W')
print mytext,