Skip to content

2878-get-the-size-of-a-dataframe

DevGod
DevGod
Vtuber
import pandas as pd
def getDataframeSize(players: pd.DataFrame) -> List[int]:
return list(players.shape)