c# .net Adsense ADO.NET Linq Viruses/security asp.net MVC JQuery Angular-js Node-js SEO Java C++ SQL API Networking vb.net .Net Css JavaScript Generics c#.Net entity framework HTML Website host Website Construction Guide HTTP tutorial W3C tutorial Web Services JSON Psychology Ionic framework Angular ReactJS Python Computer Android
Python

How to show an image using path python PIL?

| | python
In this tutorial I will show you how to display an image using path with python PIL.
Install Pillow:
pip install pillow
CODE:
from PIL import Image
image = Image.open('images/photo_1.jpg')
image.show()

Result:
show image in python