+ 4
How to insert image in Python
Give me answer please
4 Answers
+ 10
Install PIL(Python Image Library) :
then:
from PIL import Image myImage = Image.open("your_image_here"); myImage.show();
+ 5
IDK what do you mean by inserting but you can open and show images using pillow library:
from PIL import Image
with Image.open('IMAGE PATH') as img:
img.show()
+ 2
Thanks
0
Python mein image ki coding ka ek simple udaharan yeh hai:
```
from PIL import Image
img = Image.open('image.jpg')
img.show()
```