list_data_x = [1, 2]

list_data_y = [3, 4]


for i in list_data_x:

for j in list_data_y:

result = i + j

print(result)


인데 왜 6이 나오는지 이해를 못하겠어요..