I think of it as a bit strange. Should I report it as a bug? I was trying to
incorporate a save/load, and this happened.
def save():
target = open ("save.swroc", 'w')
target.write([counter, loop, number_of_competitors, competitors])
def load():
target = open("save.swroc", 'r')
the_array = target
counter = the_array[0]
loop = the_array[1]
number_of_competitors = the_array[2]
competitors = the_array[3]
Swroc is an nonexisting file format that i just made up, an acronym of the
program
--
https://mail.python.org/mailman/listinfo/python-list