SyntaxFix
Write A Post
Hire A Developer
Questions
import csv from sys import argv d = open("mydata.csv", "r") db = [] for line in csv.reader(d): db.append(line) # the rest of your code with 'db' filled with your list of lists as rows and columbs of your csv file.