2 Learn MicroPython
Jim Mussared edytuje tę stronę 2022-08-31 12:24:41 +10:00

About MicroPython

MicroPython is a Python interpreter (with partial native code compilation feature). It provides subset of Python 3.4 features, implemented for embedded processors and constrained systems.

This means that MicroPython is very close to Python, but is missing a few of the features.

Learning Python

Python is an easy to learn, well documented programming language. Learning Python is the first step to learning MicroPython. It is recommended that you learn Python 3.4 or greater, since that is the version that MicroPython is based off of.

Tutorials:

Diving into MicroPython

Now that you have learned the basics of Python, it is important to review the Differences to CPython wiki page. MicroPython supports a significant amount of Python language including numeric types, strings, tuples, lists, dictionaries, classes (with inheritance) and many more.