Your message was:
Without looking at my notes, I think you are going to have to do something like:
for x in table1
f1.write(table1[x])
or something along those lines.
I tried this:
for x in table1:
f1.write(table1[x])
but this doesn't work. I get this error:
Traceback (innermost last):
File "program.py", line 67, in ?
for x in table1:
TypeError: loop over non-sequence
Do you have another idea or do you know what in this loop deosn't work?
Without looking at my notes, I think you are going to have to do something like:
for x in table1
f1.write(table1[x])
or something along those lines.
I tried this:
for x in table1:
f1.write(table1[x])
but this doesn't work. I get this error:
Traceback (innermost last):
File "program.py", line 67, in ?
for x in table1:
TypeError: loop over non-sequence
Do you have another idea or do you know what in this loop deosn't work?