I am using these codes to work with my excel file:
writer = pd.ExcelWriter('Wages.xlsx', engine="openpyxl", mode ="a")
wb = writer.book
ws2 = wb["Living Wages"]
Now i want to print out the value from a specific cell, for example:
print(ws2.cell(row=2, column= 2).value)
Problem: Python prints out "=N2/12" because thats the formula i used for the cell above but i want to print out the true value which is 2562.23