执⾏下列Python代码,输出结果是?
list = [3, 52, 8, 21, 17] for i in range(len(list)): if list[i] % 2 == list[i+1] % 2: break print(i)
1
2
3
52