Report Bug
Qus : def keyword use for?
Qusdef कीवर्ड का उपयोग किसके लिए किया जाता है?

A. Define keyword in python
B. Define variable in python
C. Define function in python
D. All of the above


Solution
C. Define function in python



Explanation

In Python, the def keyword is used to define a function. Functions are blocks of reusable code that perform a specific task. The def keyword signals the start of a function definition, and it is followed by the function name, a pair of parentheses (which may contain parameters), and a colon. The function body, containing the actual code to be executed, is indented below the def statement.




Report Bug