请为下列程序空白处选出合适的选项,输出结果为['a', 'A', 9, 'a'] ?( )
ls1 = ['a','A','a',9,'a'] ______ print(ls
del ls1('a')
ls1.pop(2)
ls1.clear()
ls1.remove('a')