我是python編程新手,遇到問題。我一整天都在尋找解決方案,迄今爲止我發現的一切都對我有所幫助。我正在用Python編寫一個時間延遲程序,但一旦它遇到延遲的輸入,它就會給我一個錯誤。我試過在同一個程序中運行它,它可以工作,但我希望兩個程序是分開的。在python中調用另一個程序
這是delay.py延時功能
def delayA(ina):
ina=float(ina)
print("okay!")
time.sleep(ina)
print("done!")
這是我的主要
import delay.py
ina = input("Enter delay in seconds: ")
delayA(ina)
呼籲它,這是錯誤消息,我已經得到了一整天
Traceback (most recent call last):
File "<frozen importlib._bootstrap>", line 2218, in _find_and_load_unlocked
AttributeError: 'module' object has no attribute '__path__'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "D:/Python/inputcall.py", line 1, in <module>
import delay.py
ImportError: No module named 'delay.py'; 'delay' is not a package
非常感謝您的幫助!
''進口delay''沒有''進口delay.py'' - 而你真正想要的是:''從延遲進口delayA'' - **注:** Python是根據我的編輯一個沉浸的語言。 –