no time to commit and push so this is the explanation of why i changed what i did
i used settings.py rather than a text file because what if you need to store a list of values instead of just numbers
for example, the price of cities might be 1, 3, 5, 12, 20, 80, 100, and you can store that just by saying
cityprice = [1,3,5,12,20,80,100]
if you want to create the first ten powers of two for city prices you might say
cityprice = [2**x for x in range(10)]
which will make a list [1,2,4,8,16,32,64,128,256,512]
while you can do all this with a textfile and some string manipulation, i think it is a bit simpler with a .py file
initializer just creates a nation file for now. if you run order.py though, it should first initialize the nation file, then run all the rounds.
edit: ok order.py works. it asks you for the debug mode twice but besides that it works.