试题详情

以下程序的输出结果是: dat=[‘1‘, ‘2‘, ‘3‘, ‘0‘, ‘0‘, ‘0‘] for item in dat: if item == ‘0‘: dat.remove(item) print(dat)

A[‘1‘, ‘2‘, ‘3‘]

B[‘1‘, ‘2‘, ‘3‘, ‘0‘]

C[‘1‘, ‘2‘, ‘3‘, ‘0‘, ‘0‘]

D[‘1‘, ‘2‘, ‘3‘, ‘0‘, ‘0‘, ‘0‘]