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

Popular posts from this blog

c - Mpirun hangs when mpi send and recieve is put in a loop -

python - Apply coupon to a customer's subscription based on non-stripe related actions on the site -

java - Unable to get JDBC connection in Spring application to MySQL -