Код: Выделить всё
import pandas as pd # uv pip install pandas
source_path = "Dummy.xlsx"
source_sheet = pd.read_excel(source_path)
cell = source_sheet.iat[0,0]
print(f"Valeur de la cellule : {cell}")`
Код: Выделить всё
Valeur de la cellule : A2
Подробнее здесь: https://stackoverflow.com/questions/792 ... -return-a2
Мобильная версия