+ 3
If you need help with your code, link your code.
27th Sep 2024, 2:47 PM
Lisa
Lisa - avatar
+ 1
You said you have been trying to insert a photo. Show what you have tried.
27th Sep 2024, 2:51 PM
Lisa
Lisa - avatar
+ 1
do you have pillow as well?
27th Sep 2024, 3:19 PM
Mihaly Nyilas
Mihaly Nyilas - avatar
+ 1
To insert a photo in Python, use the PIL (Pillow) library. First, install Pillow with pip install pillow. Then, import it using: from PIL import Image img = Image.open('photo.jpg') img.show() This opens and displays the image from the specified file path.
5th Oct 2024, 10:51 AM
khushnuma
khushnuma - avatar