"""categories: Core,Runtimedescription: Local variables aren't included in locals() resultcause: MicroPython doesn't maintain symbolic local environment, it is optimized to an array of slots. Thus, local variables can't be accessed by a name.workaround: Unknown"""deftest():val=2print(locals())test()