Is machine a library or a module? #16062
-
Hello, But, when I view the page for "machine", here: https://docs.micropython.org/en/latest/library/machine.html, I find this statement, "The machine module contains specific functions..." Some I'm wondering, is machine considered a library or a module? Thank you! -Brian |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
In Python, the terms module, package and library are often used somewhat interchangeably, though they do have technical differences as described here: Python Modules, Packages, Libraries, and Frameworks. People will also argue about the definitions.
|
Beta Was this translation helpful? Give feedback.
In Python, the terms module, package and library are often used somewhat interchangeably, though they do have technical differences as described here: Python Modules, Packages, Libraries, and Frameworks. People will also argue about the definitions.
machine
is probably most appropriately called a library but I would also use the term module. I wouldn't sweat it too much. 😜