Tagged Questions
2
votes
1answer
89 views
How to get the last element of a specific column from a CSV file?
I have CSV files of different lengths. For example
a,b,c,d,e
0,0, 5, 5, 1
0,5, 5, 11, 2
0,11, 5, 16, 1
5,0, 10, 6, 1
5,6, 10, 11, 2
I want to get the value of the last element of the c and d ...
4
votes
2answers
141 views
Automatically formatting a table from a file with a list of words
I have a list of ~1000 words in a text file. The words are listed in a text file "my_words.txt" with no breaklines as follows:
word1, word2, word3, etc.
I would like to display these words in a ...