摘要:
py_excel xlrd 读excel workbook = xlrd.open_workbook(file_path) sheet = workbook.sheet_by_name(sheet_name) # 有效行 sheet.nrows # 行数据 sheet.row_values(num) 阅读全文
摘要:
OCR基础框 import pytesseract from PIL import Image img = Image.open('实际数据1.jpeg') #具体位置截图 image1 = Image.crop((left,top,right,bottom)) text = pytesseract 阅读全文