假设有一个Python列表list1=[1,2,3,4,5],下面哪个操作可以移除列表中的第一个元素?( )
list1.pop(1)
list1.remove(1)
del list1[1]
list1.clear()