下⾯Python代码执⾏后输出的是( )。
tnt = 0
for i in range(5, 100, 5):
if i % 2 == 0:
continue
tnt += 1
if i % 3 == 0 and i % 7 == 1:
break
500
450
10
2