我的程序是运行,但是被最小化了

My program is running, but it is minimized

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()

当我 运行 这个程序并用波兰回答问题 "Your country" 时,它确实有效(它打开 "Python Turtle Graphics" window 并画了一面旗帜),但是它被最小化。请帮助。我是新手。

如果你想最大化乌龟window只需使用:

t.Screen().cv._rootwindow.wm_state("zoomed")

t.Screen().cv._rootwindow.state("zoomed")

这是可行的,因为 turtle 就是 tkinter window。

但是window会在后台播放。

要在第一层弹出:

t.Screen().cv._rootwindow.attributes("-topmost", True)

turtle 中有更多 tkinter t.Screen().cv._rootwindow.here_comes_the_tkinter_window_command