message = 'hello, world!' print(message.replace('o', 'O').replace('l', 'L').replace('he', 'HE'))
# HELLO, wOrLd!