使用 Python 时如何在 Kivy 中设置时钟的计划时间?
How to set schedule time of clock in Kivy while using Python?
我正在尝试使用 Python 中的 Kivy 制作程序,其中特定函数会在一段时间后执行。
def repeat(dt):
print "My callback is called",dt
Clock.schedule_interval(repeat,1/30.)
以上是我写下的代码,但有一个错误,我附上了这个描述的图像。请帮助我并指导我如何以富有成效的方式在 Python 中使用 Kivy。
您需要导入时钟:
from kivy.clock import Clock
我正在尝试使用 Python 中的 Kivy 制作程序,其中特定函数会在一段时间后执行。
def repeat(dt):
print "My callback is called",dt
Clock.schedule_interval(repeat,1/30.)
以上是我写下的代码,但有一个错误,我附上了这个描述的图像。请帮助我并指导我如何以富有成效的方式在 Python 中使用 Kivy。
您需要导入时钟:
from kivy.clock import Clock