SyntaxFix
Write A Post
Hire A Developer
Questions
In case of exporting lll list of lists of lists to .csv, this will work in Python3:
lll
import csv with open("output.csv", "w") as f: writer = csv.writer(f) for element in lll: writer.writerows(element)