message = "h@ll$ w$rld" # make the replacement ('!'->'a', '@'->'e', etc.) message.translate(str.maketrans("!@#$%", "aeiou")) # outputs hello world