Загрузить файлы в «/»

This commit is contained in:
Шимченко 2025-07-02 13:10:37 +00:00
commit 2385c379df

4
count_sum_pandas.py Normal file
View File

@ -0,0 +1,4 @@
import pandas as pd
def count_sum(df: pd.DataFrame) -> pd.DataFrame:
return df.groupby('Товар')['Количество'].sum().reset_index()