+ 2

Where can I get a full list of functions ?

31st Aug 2020, 4:50 AM
Sadat Rahman
Sadat Rahman - avatar
2 Answers
+ 3
1) which language ? 2) which functions ? Use your question description to answer these questions first.
31st Aug 2020, 4:55 AM
Arsenic
Arsenic - avatar
+ 3
In Python you can get it using dir function: dir(<namespace>) fives the list of all functions and variables in the namespace. dir(__builtins__) gives the list of all builtin functions.
31st Aug 2020, 5:10 AM
Seb TheS
Seb TheS - avatar