Python 3 sched模块

时间:2017-04-23 20:25:18

标签: python python-3.x

我正在尝试创建一个脚本,它将在每分钟的顶部运行代码。我正在研究sched模块,我遇到了一些奇怪的问题。

第一个问题是导入sched会运行我的脚本两次。

import sched
print('hello')

输出:

Hello
Hello

此代码也直接来自documentation

import sched, time
s = sched.scheduler(time.time, time.sleep)

产生此错误:

AttributeError: module 'sched' has no attribute 'scheduler'

1 个答案:

答案 0 :(得分:1)

根据我的评论 - 您的文件名为sched.py,因此,它正在导入自己,其中没有属性scheduler