1.求解代码:
name=input().split()
for i in range(3):
    name.pop()
print(name)
2.思路:
用一个for循环即可。
*注*:pop() 方法删除指定的索引(如果未指定索引,则删除最后一项)