Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you may not be able to execute some actions.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
如题所示, 定义一个变量,使用过后,能不能释放其占用的RAM?
micropython自动清除不用的ram。不需要手动清除。
如果一定要手动清除,那就调用del()函数删掉,然后调用gc.collect()回收。