我在“.py”文件中有一个 python 脚本,它基本上包含如下内容:
#import time and tcmodule.py module
import time
import tcmodule as tc
# Set Inputs (step 1):
tc.SetInput1(0)
tc.SetInput2(0)
tc.SetInput3(0)
time.sleep(0.250)
print(time.time())
# Set Inputs (step 2):
tc.SetInput1(3)
tc.SetInput2(6)
tc.SetInput3(12)
time.sleep(0.250)
print(time.time())
#the code continues the same way...
包含这 4 条指令的“设置输入”块重复了大约 900 次,因此该文件很长但易于理解。它只是给一些变量一些值并等待 250 毫秒。
问题是,当我执行程序时,pythonwin 突然停止读取脚本(我知道是因为它突然停止打印时间),我不知道为什么会这样。最奇怪的是每次都停在不同的地方,所以我猜代码是可以的。有人知道代码有什么问题吗?