0 votes
in Python by
Can you please explain what is a function in Python Language?

1 Answer

0 votes
by
A function is an object which represents a block of code and is a reusable entity. It brings modularity to a program and a higher degree of code reusability.

Python Language has given us many built-in functions such as print() and provides the ability to create user-defined functions.

Related questions

+1 vote
asked Feb 15, 2021 in Python by SakshiSharma
0 votes
asked Aug 30, 2020 in Python by sharadyadav1986
...