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()
当我运行这个程序并用波兰回答“你的国家”问题时,它确实有效(它打开了“Python Turtle Graphics”窗口并绘制了一个标志),但它被最小化了。请帮忙。我对此很陌生。