What in Sam Hill is a "MicroPython?" Is that some sort of a miniature snake?

Python is a very popular programming language which has been about since the early 1990's. It's often said that Python is the new BASIC and is popular in schools and universities as it enforces a structured and object orientated approach.
It's used in real-life situations - and e.g. SpaceX use Python to build their test framework for the flight control software.
the Raspberry Pi is called Pi not after 3.14 but after Python and the Pi foundation concentrate heavilly on using Python as the main programming language for their teaching applications on the Pi.
So Python is here to stay and it's not going away.
MicroPython is a slightly cut-down version designed to work on Microcontrollers. (Typically 32-bit ARM, but ports to others exist including Super-H and RISC-V)
There is even a derivative called CircuitPython -
https://en.wikipedia.org/wiki/CircuitPython
Seriously, I just can't envision MP being a good fit on a 65xx system—too bloated and slow. It seems to me to be a solution in search of a problem. Disclaimer: I think Python is a garbage language, with a degree of bloat that would make Microsoft proud if they had been the ones to invent the language. That's my two cents and I'm sticking to it.
It's bloated from the perspective of old folks and retro system with limited RAM. It's compact and fast on todays desktop and modern embedded systems. MicroPython is an attempt to run Python on microcontrollers in manner that would enable desktop Python users to learn and use microcontrollers. It's been ported to most modern 32-bit microcontrollers and there are now many systems that boot directly into a running MicroPython application
As for it being a good fit - you may well be right there - but I don't think it's impossible - I really don't think it's a much bigger task than my port of the BCPL Cintcode system to the '816. What would it achieve? A nice warm feeling for the person doing the port and with the right hardware then it might attract newbies to the thought of using a retro system and give them some appreciation of the history behind it. (as an alternative to say, 'look, we went to the moon with a computer less powerful than the microcontroller is in your USB wall-wart charger')
The '816 is still being manufactured, so I'd love to know if the '816 is actually being used in some real-life project today. The small handful of people here building them (and including the Foenix/Neon systems) probably won't account for more than (say) 500 ICs in total, so where are the rest going? Or is it really economical to make chips in quantities of < 100 units now?
-Gordon