from PIL import Image myImage = Image.open("your_image_here"); myImage.show();
Here is what the above code is Doing:
1. Importing the Image module from the PIL library.
2. Opening an image using the Image.open() function.
3. Showing the image using the show() function.