a=['Welcome','to','Python','World','!'],以下哪条语句无法删除列表a中的元素Python?
del a[2]
a.pop(2)
a.pop('Python')
a.remove('Python')