I have a .csv file with a 236 columns that are all text based.
How do I find the row with largest size in bytes?
If I have a csv file in the following format:
x, y, z
1 'hello', 'world',
2 'quick', 'brown', 'fox'
3 'chick', 'fil', 'a'
How can I scan through this file to see which row has the largest size?
Expected result:
3 Size - 'x' bytes
Thank you.