阅读下面代码,请问输出的列表中包含哪些元素?
ls =['a','b','c','d','e','f,'g','h'] for i in range(2) ls.pop(i) print(ls)
'a'
'd'
'g'
'h'