in Python by (31.7k points)
What Is A Function Call Or A Callable Object In Python?

1 Answer

0 votes
by (32.2k points)

A function in Python gets treated as a callable object. It can allow some arguments and also return a value or multiple values in the form of a tuple. Apart from the function, Python has other constructs, such as classes or the class instances which fits in the same category.

Related questions

0 votes
asked Jun 28, 2020 in Python by Robindeniel (20.8k points)
0 votes
asked Jun 28, 2020 in Python by Robindeniel (20.8k points)
0 votes
asked Dec 14, 2019 in Python by sharadyadav1986 (31.7k points)
...