python - Iterate over rows of astropy.table Table object -
What is the fastest way to repeat the rows of table objects from Astropy.table?
For the row in the table:
?
Works as expected on manipulating table rows:
& Gt; & Gt; & Gt; Astropy.table import from table & gt; & Gt; & Gt; Table = table ([[1, 2, 3], ['a', 'b', 'c']])> gt; & Gt; & Gt; For the row in the table: ... print line ['col0'], row ['col1'] ... 1A2b3c
Comments
Post a Comment