I need to take a column from one csv file and compare this column with another column from another csv file to find a match.
I can not use Panda, I extract tables and stuck after..
def first():
with open('1.csv') as csv_file:
for line in csv_file.readlines():
array = line.split(',')
list_pk = array[1]
def sec():
with open('2.csv') as csv_file:
for line in csv_file.readlines():
array = line.split(',')
list_fk = array[0]