I\'m using python (Django Framework) to read a CSV file. I pull just 2 lines out of this CSV as you can see. What I have been trying to do is store in a variable the total n
To do it you need to have a bit of code like my example here:
file = open("Task1.csv") numline = len(file.readlines()) print (numline)
I hope this helps everyone.