第25646题 单选
Python条件判断选择题:找出不能实现输出100内被2整除且除以7余2的填空选项
for i in range(100):
    if ________________:
        print(i)
A

i % 2 == 0 and i % 7 == 2

B

not(i % 2) and i % 7 == 2

C

not(i % 2) and not(i % 7)

D

i % 2 != 1 and i % 7 == 2