Closed sam-tj closed 4 years ago
Is there any way to exclude header from csv file while converting it into list?
No not really. But you can use .skip(1) on your list to get an iterable which skips the header.
.skip(1)
Is there any way to exclude header from csv file while converting it into list?