Вот словарь, который у меня есть
propertyList = {
"id": "int",
"name": "char(40)",
"team": "int",
"realOwner": "int",
"x": "int",
"y": "int",
"description": "char(255)",
"port": "bool",
"secret": "bool",
"dead": "bool",
"nomadic": "bool",
"population": "int",
"slaves": "int",
}
Но когда я распечатываю его с помощью "\n".join(myDict), я получаю этот
name
nomadic
dead
port
realOwner
secret
slaves
team
y
x
population
id
description
Я знаю, что словарь неупорядочен, но он возникает каждый раз, и я понятия не имею, почему.