I'm running into a bit of difficulty trying to extend a list.
The problem section of code is:
l = []
tickers = soup.find_all('td', {'aria-label': 'Symbol'})[1:].text
l.extend(tickers)
When I print tickers it comes out as expected with one ticker per line. However, when I try to add them to a list, it shows as one letter per line. Even when I save it to csv it's one letter per line.
Any suggestions on how to fix this?