2878. Get the Size of a DataFrame ¶ Python 1 2 3 4 5import pandas as pd def getDataframeSize(players: pd.DataFrame) -> list[int]: return [*players.shape]