我使用Python大约一周,所以这可能是一个非常愚蠢的问题。 刚刚遇到一个非常奇怪的情况。 我有一个文件EventActions.py:
from subprocess import call
def ResetDevice():
print("Reseting device")
call(["sudo", "reboot"])
print("Wait for it...")
我遇到的问题是当我通过
导入此文件时实际调用了函数ResetDeviceimport EventActions
我通过SSH连接到Raspberry Pi开始我的程序。在此之后,设备当然会重新启动。