Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

get length of csv file with python

input_file = open("nameOfFile.csv","r+")
reader_file = csv.reader(input_file)
value = len(list(reader_file))
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #length #csv #file #python
ADD COMMENT
Topic
Name
7+8 =