+ 4
How to insert image in Python
Give me answer please
3 odpowiedzi
+ 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