s = "Earthworms and Python are disgusting!" s.replace('and Python ', '') print(s) #Run the code result = "Earthworms are disgusting!"