How to know the built in functions in Python ?
To know built in functions in Python type dir(__builtins__) press enter you will get all built in functions.
if you want to know how the functions works use Help to know the functionality
like
help(pow) it will display the functionality of particular function
To know built in functions in Python type dir(__builtins__) press enter you will get all built in functions.
if you want to know how the functions works use Help to know the functionality
like
help(pow) it will display the functionality of particular function