1
2# Python3 program to demonstrate the
3# use of replace() method
4
5string = "geeks for geeks geeks geeks geeks"
6
7# Prints the string by replacing geeks by Geeks
8print(string.replace("geeks", "Geeks"))
9
10# Prints the string by replacing only 3 occurrence of Geeks
11print(string.replace("geeks", "GeeksforGeeks", 3))
1>>> x = 'xpple bxnxnx cherry'
2>>> a = x.replace(x,a) # replaces x with a
3'apple banana cherry'
4
5>>> first_a = x.replace(x,a,1) # only replaces first a
6'apple bxnxnx cherry'
1>>> s = list("Hello zorld")
2>>> s
3['H', 'e', 'l', 'l', 'o', ' ', 'z', 'o', 'r', 'l', 'd']
4>>> s[6] = 'W'
5>>> s
6['H', 'e', 'l', 'l', 'o', ' ', 'W', 'o', 'r', 'l', 'd']
7>>> "".join(s)
8'Hello World'