Respuesta :
Answer:
end_of_word ("boat")
="oat"
end_of_word ("mice")
="ice"
Explanation:you need to call out your function in the best way possible
Answer:
def end_of_word(word):
return word[1:]
print(end_of_word("something"))
Explanation:
Your welcome :D