a = [[4.0, 4, 4.0], [3.0, 3, 3.6], [3.5, 6, 4.8]]
You can get the index [0] from each element in a list comprehension
[0]
>>> [i[0] for i in a] [4.0, 3.0, 3.5]
No comments:
Post a Comment