How to see the List of Parameters of a Micropython Function on Repl level #12439
hasenradball
started this conversation in
General
Replies: 2 comments 1 reply
-
MicroPython does not make this available. This is mostly for size/efficiency reasons, but also for some functions (e.g. built-ins implemented in C) the information doesn't exist at all (for example, the parameters of most built-in functions do not actually have names). |
Beta Was this translation helpful? Give feedback.
0 replies
-
@jimmo Thanks for the fast reply. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
I am working with python since a while, but I have an short question regarding micropython.
If I import a module, which I don't know actually how can I check which parameters has a function inside this module?
With
dir(module)
I get only the function names but not which parameters has a function, right?Beta Was this translation helpful? Give feedback.
All reactions