Computer Science, asked by RAMalik, 2 months ago

use and application of user define functions in python​

Answers

Answered by Tanvilamba
0

Answer:

a function that you define yourself is known as user defined function . you can give name to any user defined function . However you can not use python keywords as function name . in python we define the user defined function using def keyword followed by function name

Answered by Shivay644
0

User defined function:

1. In Python, a user-defined function's declaration begins with the keyword def and followed by the function name.

2. The function may take arguments(s) as input within the opening and closing parentheses, just after the function name followed by a colon.

Functions that we define ourselves to do certain specific task are referred as user-defined functions. The way in which we define and call functions in Python are already discussed. Functions that readily come with Python are called built-in functions.

Please mark as brainlist

Similar questions