Image to text (Optical Character Recognition)

What is OCR?

from PIL import Image 
import pytesseract
pytesseract.pytesseract.tesseract_cmd=r'D:\\image rec\\Tesseract.exe'
img=Image.open('full_page.jpg')
text=pytesseract.image_to_string(img)
print(text)