What is def function in python?
Answers
Answered by
1
Answer:
Keyword def that marks the start of the function header. A function name to uniquely identify the function. Function naming follows the same rules of writing identifiers in Python. Parameters (arguments) through which we pass values to a function.
Similar questions