在 CodeSkulptor(在线 Python 编码页面)中,我写了一个简单的代码,但有时间延迟。很简单:
import time
time.sleep(5)
print("random string")
当我按下运行时,我收到一条错误消息:Line 2: AttributeError: '<invalid type>' object has no attribute 'sleep'
有什么想法有什么问题吗?或者我该如何解决?
在 CodeSkulptor(在线 Python 编码页面)中,我写了一个简单的代码,但有时间延迟。很简单:
import time
time.sleep(5)
print("random string")
当我按下运行时,我收到一条错误消息:Line 2: AttributeError: '<invalid type>' object has no attribute 'sleep'
有什么想法有什么问题吗?或者我该如何解决?
CodeSkulptortime
中的模块仅实现功能:
http: //www.codeskulptor.org/docs.html#Time time
查看模块内容:http: //www.codeskulptor.org/#user44_uEhmhATcPLOytns.py
CodeSkulptor3的文档只提到了模块
中的time
功能: http ://py3.codeskulptor.org/docs.html#Timetime
但是实现中存在该sleep
功能和其他功能:http:
//py3.codeskulptor.org/#user301_4e5WktRmz4A193D.py
请注意,在CodeSkulptor3中,所有打印都等待sleep
函数结束。因此,如果您想在打印之前等待,此功能可能没用。
你在做javascript。你必须去 py3.codeskulptor.org。您的代码在那里工作正常。