Skip to content
Advertisement

Extract column from tabular data

My task is to pull a column out of table and write down its length len (). But my code is emitting it into a column, which is why len () counts each element of the column separately, and not their total

JavaScript

water.txt:

JavaScript

Desired intermediary output:

JavaScript

Advertisement

Answer

You are not correctly extracting the colum. The correct way is with a list comprehension:

JavaScript

With your sample data, I get ['H', 'H', 'O'] for el, which is the third column.

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement