我是 python 新手。如果我的 vpn 隧道关闭,我试图获得一个闪烁的红色圆圈(指示器),如果我的 vpn 启动,我将获得稳定的绿色。但是,我目前陷入困境的是建立这个闪烁的红灯。
我努力了:
#!/usr/bin/env python
import turtle
turtle.setup(100,150)
t = turtle.Turtle()
t.speed(0)
while True:
#Python program to draw color filled circle in turtle programming
t.begin_fill()
t.fillcolor('red')
t.circle(25)
t.end_fill()
t.begin_fill()
t.fillcolor('white')
t.circle(25)
t.end_fill()
turtle.done()
它几乎就在那里,除了画圆需要“很长时间”。还有其他更好的方法吗?顺便说一句,是否可以获得透明背景?