This is the current code that i have:
with open('some_file.csv', mode='r') as fp:
reader = csv.reader(fp)
for row in reader:
print(row[0])
And I have a csv file that looks something like:
email@email.com,Name
email2@email.com, Name2
and so on...
But when I run this code, it automatically skips the 1st row because it thinks it is a header. I do not want to skip the 1st row and print everything out. How to do that? Thanks.