我想在Keynote中使用一些特定的程序包。例如,我想通过使用如下所示的斜杠包来写\ slashed {q}
from threading import Timer
class myclass():
iteration_count = 0
heartbeat = 1
def printMsg(self):
print "hello world!"
def start_job(self):
self.printMsg()
self.iteration_count = self.iteration_count + 1
if self.iteration_count == 10:
Timer(self.heartbeat, self.start_job, ()).cancel()
Timer(self.heartbeat, self.start_job, ()).start()
m = myclass()
m.start_job()
是否可以将特定的程序包导入主题演讲?
我正在Mojave上使用Keynote 8.2。
谢谢。