I'm trying to parse a CSV file like this one:
="meet_name",="swim_time",="swim_date"
this is the code I have so far:
import csv
with open('Report.csv', 'r') as csv_file:
csv_reader = csv.reader(csv_file, delimiter='=', quotechar='"')
for line in csv_reader:
print(line)
but when I print it to the screen the comma still there:
['', 'meet_name,', 'swim_time,', 'swim_date,']
How could I parse it without the coma at the end?