string = "Welcome to Softhunt website, Softhunt is a website dedicated to programming courses"
print("Original String: ", string)
# replacing s by e
print("Replaced String: ", string.replace("s", "e"))
# 3 occurrence of m by a
print("Replaced with 3 occurrences: ", string.replace("m", "a", 3))