I have the following code
import yfinance as yf
data = yf.download(tickers='AAPL', period='5d', interval='5m')
print(data)
This returns a large text-based table, with [330 rows x 6 columns] at the bottom. Some of the rows are replaced with ..., and only 10 rows are printed. How do I change this and make it print every single row?