I'm trying to open a jpg file with a code in python 2.7 and without some modules.
Here's my attempt:
p='C:/Users/Israe/Desktop/picture.jpg'
with open(p, 'rb') as inf:
jpgdata = inf.read()
It's showing no errors, but it's doing nothing.
How can I display this image?