下面Python代码执行后输出的是( )。
tnt = 0
for i in range(5, 100, 5):
if i % 2 == 0:
continue
tnt += 1
if i >= 50:
break
print(tnt)
10
9
6
5