Login
Remember
Register
Ask a Question
How many basic types of functions are available in Python Language?
0
votes
asked
Aug 29, 2020
in
Python
by
Robindeniel
How many basic types of functions are available in Python Language?
#python-available-functions
Python-questions-answers
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Aug 29, 2020
by
sharadyadav1986
Python Language gives us two basic types of functions.
1. Built-in, and
2. User-defined.
The built-in functions happen to be part of the Python Language language. Some of these are print(), dir(), len(), and abs() etc.
...