def Poland():
import turtle as t
t.bgcolor("black")
t.width(10)
t.color("white")
t.forward(50)
t.right(90)
t.penup()
t.forward(10)
t.right(90)
t.pendown()
t.color("red")
t.forward(50)
Z = eval(input("Your country: "))
if (Z == Poland):
Poland()
When I run this program and answer the question "Your country" with Poland, it does work (It opens "Python Turtle Graphics" window and draws a flag), but it is minimized. PLS help. I am new at this.