+ 3
If you need help with your code, link your code.
+ 1
You said you have been trying to insert a photo. Show what you have tried.
+ 1
do you have pillow as well?
+ 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.