下面Python代码用于输出0-100之间(包含100)能被7整除但不能被3整除的数,横线处不能填入的代码是( )。
for i in range(100):
if __________________________:
print(i)
i % 7 == 0 and i % 3 != 0
not(i % 7) and i % 3 != 0
i % 7 and i % 3
i % 7 == 0 and not(i % 3 == 0)