Skip to content

2878. Get the Size of a DataFrame 👍

1
2
3
4
5
import pandas as pd


def getDataframeSize(players: pd.DataFrame) -> list[int]:
  return [*players.shape]