下面Python代码执行后,将输出5。( )
1 cnt = 0 2 for i in range(1,5): 3 for j in range(i,5,i): 4 if i * j % 2 == 0: 5 cnt += 1 6 print(cnt)