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
x
4
1
water = water.readlines()
2
for col in water:
3
el = list(col.split()[2])
4
water.txt:
JavaScript
1
6
1
HETATM 1 H HOH A 1 27.265 36.739 58.126
2
HETATM 2 H HOH A 1 27.109 35.124 57.944
3
HETATM 3 O HOH A 1 27.486 35.958 57.542
4
5
HETATM 9999 O HOH A3333 30.490 83.899 10.929
6
Desired intermediary output:
JavaScript
1
7
1
H
2
H
3
O
4
H
5
H
6
O
7
Advertisement
Answer
You are not correctly extracting the colum. The correct way is with a list comprehension:
JavaScript
1
3
1
with open( ) as water:
2
el = [line.split()[2] for line in water]
3
With your sample data, I get ['H', 'H', 'O']
for el, which is the third column.