I am trying to create a short program that reads lines in columns A, B, C and D in Excel, but keep receiving a file not found error and name error.
import csv
with open(London_Underground_data) as fp
rows = list(csv.reader(fp))
for row in rows:
for column in row[1:]:
print(rows)