from yahoo_fin import stock_info as yf_info
import pandas as pd
gainersdf = yf_info.get_day_gainers()
gainersrd = gainersdf.head(10)
car = gainersrd.iloc[:, : 1]
print(car)
that code prints this:
Symbol
0 BAK
1 TNRSF
2 LIVN
3 IBRX
4 ALIT
5 MODG
6 SRAD
7 CLSK
8 MARA
9 VKTX
how can i make it so that it turns all those ticker symbols into a list. idk how to do it for each ticker in Symbol collumn