1

从 astropy.table 遍历 Table 对象的行的最聪明的方法是什么?

是不是像:

for row in table:
    ....

?

4

1 回答 1

6

迭代表行按预期工作:

>>> from astropy.table import Table
>>> table = Table([[1, 2, 3], ['a', 'b', 'c']])
>>> for row in table:
...     print row['col0'], row['col1']
...     
1 a
2 b
3 c
于 2014-02-18T18:55:55.173 回答