+ 2
Where can I get a full list of functions ?
2 ответов
+ 3
1) which language ?
2) which functions ?
Use your question description to answer these questions first.
+ 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.