def get_first_word(sentence): return(sentence.split(" ",3)[2]) x=get_first_word("The car was fast") print(x)