I try to get ttm values of the income statement for ticker symbol AAPL by using
from yahoo_fin import stock_info as si
import yfinance as yf
import pandas as pd
import matplotlib.pyplot as plt
import pandas_datareader
pd.set_option('display.max_columns', None)
income_statement = si.get_income_statement("aapl")
income_statement
but the result doesn't show the ttm values, only the yearly values are shown

On yahoo finance, we can also see the ttm values:
Anyone who can help?
