How to work with more than one replacement in Python using Replace?
Note: The use of FOR or FUNCTION is not allowed without DICTIONARY.
Example:
print("Bolacha".replace('a', 'e').replace('o', 'u'))
How to improve the above code without having to keep repeating .replace ....?