I have to fetch the values from CSV within my local machine and iterate each element and compare them with each element of another row.
My CSV is stored in my Local C drive and read the value, now I need help to iterate each element from source and target.
import csv
with open('C:\\Users\\user\\Desktop\\test_readwrite.csv') as cs:
csv_reader = csv.reader(cs)
#displaying it line by line
for line in csv_reader:
print(line)
#closing the connection
cs.close()