#! /usr/bin/env python
# -*- coding: utf-8 -*-#
# -------------------------------------------------------------------------------
# Name: demo
# Author: yunhgu
# Date: 2021/8/25 16:02
# Description:
# -------------------------------------------------------------------------------
import pytesseract
from PIL import Image
img = Image.open(r"F:pythonProject图片OCR识别20190414175438830.png")
content = pytesseract.image_to_string(img)
print(content)