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