Answers for "python replace multiple charcters"

2

python substitute multiple letters

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

Code answers related to "python replace multiple charcters"

Python Answers by Framework

Browse Popular Code Answers by Language