This commit is contained in:
2025-12-19 15:23:19 +01:00
parent 5483818309
commit 65fdce24b8
3 changed files with 10 additions and 0 deletions

9
dzien_05/df_xlsx.py Normal file
View File

@@ -0,0 +1,9 @@
import pandas as pd
# ImportError: Missing optional dependency 'openpyxl'.
# Use pip or conda to install openpyxl.
dane = pd.read_excel('/home/adasiek/Nextcloud/05_SZKOLENIA/10_COMARCH/20251215_Python_Nieprogramisci/2025_12_15_python/dzien_05/arkusz.xlsx')
print(dane)
wynik = dane.loc[dane['instrument'] == 'INVCEEFIZ', 'ilosc'].sum()
print(wynik)