Where is python built in functions stored or defined? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Where is python built in functions stored or defined?

Like we have python modules in the standard library from which we can import methods and use them, is there also a module where all the built-in functions are defined? If yes, how can I view that module?

7th Aug 2019, 1:50 PM
Renuka Chhalotre
Renuka Chhalotre - avatar
1 Answer
+ 2
something like this? print(dir(__builtins__)) print(help(MODULE_NAME))
7th Aug 2019, 2:48 PM
Steven M
Steven M - avatar