import re


r = re.compile(r'hello|world')


string = 'hello world the World!!'

print(re.sub(r, 'fuck', string))

