Python CSV Error: sequence expected
writer.writerow expects a sequence (a tuple or list) of values to write in a single row, with one value per column in that row. What you have given it instead is a single value. Your code really should look more like: and it looks to me like most of this code should be in a big … Read more