how can i directly access a function from a package? where is this function located?
Code for e.g:
import openpyxl as xl
path = 'transaction.xlsx'
wb = xl.load_workbook(path)
#how can i directly access a function from a package? where is this function located?
sheet = wb['Sheet1']
cell = sheet.cell(1,1)
print(cell)