gpt4 book ai didi

python - 强制微:Bit Shutdown

转载 作者:太空宇宙 更新时间:2023-11-04 09:31:44 27 4
gpt4 key购买 nike

我有 parking 系统的代码。当空格数超过 20 时,它会发送错误消息,因为 20 是空格的限制。我想在此之后尝试关闭程序。

我已尝试做您可以在 Python 中做的事情。这是:

import sys
display.scroll("Error: Limit exceeded.")
sys.exit()

这给了我一个属性错误。

from microbit import *
import sys

elif spaces > 20:

display.scroll("Error: The spaces have exceeded the limit.")
sys.exit()

这应该在 elif 语句之后关闭程序,不让它运行。还有更多的代码(if 语句、循环、函数),但它是无关紧要的。

谢谢:)

最佳答案

我可以想到几种方法。

一般来说,你可以进入一个无限循环,如果没有办法中断循环,这将有效地停止一切:

while True:
microbit.sleep(1000000) # wait for 1000 seconds until the end of time

在 micro:bit 的文档中还有 microbit.panic() ,其中引用了 micro:bit 的“需要重启”:

microbit.panic(0)

你可以看看这是否适合你。

由于 micro:bit 使用 MicroPython 作为其 Python 实现,您可以查看 here在 MicroPython 文档中:

import pyb

pyb.stop() # stop CPU, waiting for external interrupt

但是,如果确实发生外部中断(并且可能发生),程序可能会继续。

关于python - 强制微:Bit Shutdown,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55473161/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com