第25717题
输出0~100间能被7整除但不能被3整除的数的Python代码,横线处不能填入的是?
for i in range(100):
    if __________________________:
        print(i)
A

i % 7 == 0 and i % 3 != 0

B

not(i % 7) and i % 3 != 0

C

i % 7 and i % 3

D

i % 7 == 0 and not(i % 3 == 0)