News

A string in Python is a sequence of characters enclosed in quotes. You'll use a loop to iterate over each character in the string and the built-in ord () function to convert it to its ASCII value.
Implement the function to modify and return the string ‘ str’ in such a way that all occurrences of ‘ch1’ in original string are replaced by ‘ch2’ and all occurrences of ‘ch2’ in original string are ...