2878. Get the Size of a DataFrame

Обновлено: 2024-03-12
1 мин
[]

Содержание

LeetCode problem 2878

import pandas as pd


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