下列程序为求 1—>100 所有偶数之和, 则在①处应填入? ( )
ans = 0
for i in range( ① ) :
ans += i
print(ans)
1, 100, 2
1, 101, 2
2, 101, 2
2, 100, 2