第三章删除元素:del 是语句,用法:del guests[0]pop,remove是方法,用法:guests.pop()或guests.pop[0]guests.remove('ducati')(根据值删除元素)