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