📅  最后修改于: 2022-03-11 14:45:24.485000             🧑  作者: Mango
def print_first_word():
words = "All good things come to those who wait"
print(words.split().pop(0))
#to print the last word use pop(-1)
print_first_word()