0
How to put the flag of some country in Python?
4 Respuestas
+ 2
Question unclear, maybe a generalization would be better. Is the flag a picture or an emoji?
+ 2
What is it you want to do exactly? You can't properly show a picture in the console, it has to be a popup.
If you want to display a picture without console, you can use the PIL module:
from PIL import Image
Image.open("your_file").show()
0
Flag picture
0
Okej, thanks