'How to save some variables fromastroquery table?

I'm using astroquery to find flux(mag) of some specific stars. The code shows them to me in a table. However i want to save those flux values in an array or in an excel file. How can i do that?

My code is:

column_names = ["#paper", "Object", "RA","Ra2","DEC","Dec2"]
data=pd.read_csv("jwebb.tsv", sep = '\t', names=column_names)

STARS=data.Object.to_list()
result_table = Simbad.query_objects(STARS, wildcard=True)
print(result_table)


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source