[print(i, j) for j in range(2) for i in [3, 4]]  # 错误
[print(i, j) for i in [3, 4] for j in range(2)]  # i在前 for i for j