placement = {
"cross": (50, 120),
"circle": (640, 120),
"cross": (1066, 120),
"circle": (50, 360),
"cross": (640, 360),
"circle": (1066, 360),
"cross": (50, 600),
"circle": (640, 600),
"cross": (1066, 600)
}
for k in placement.keys():
print(k)
output :
cross
circle
I can't seem to understand why only the last two line of my dict is printed and even those two last line do not correspond to the two last lines of my dict.