下面 Python 代码执行后的输出是()。
cnt = 0 for i in range(10): for j in range(i): if j % 2: break cnt += 1 print(cnt)
55
18
9
33