Spencer Parker wrote: > That loop was some weird indentation that was caused when I pasted > it...it wasn't suppose to be indented like that...
Why is it there at all? The loop with range() is the one that is generating the data you want to store. > This is all that I get when I run it... > TypeError: not all arguments converted during string formatting You didn't include that line before. That means you have more arguments (the length of row) than you have %s placeholders. Kent _______________________________________________ Tutor maillist - [email protected] http://mail.python.org/mailman/listinfo/tutor
