def move_first_word_to_end_of_string(s):
parts = s.split()
return " ".join(parts[1:] + parts[:1])
s = "Would you like to know more? (Explore and learn)"
word = "like"
result = move_first_word_to_end_of_string(s)
print(result)
'''
run:
you like to know more? (Explore and learn) Would
'''