Yes it's an "expert vs beginner" thing. Experienced programmers would avoid using the "import *" form because it brings stuff into the namespace that you might not need. For beginners it's nice to just type "sleep" rather than "microbit.sleep" for example. @microbit_edu#Python
@microbit_edu I have been using micro:bit for a while along with makecode. Just starting on the python journey, and one of the things that seems odd/funny... a couple of places using “from microbit import *” and (what seem to be experts) some saying, “never use that, use ‘import microbit’ “