Robotics & Artificial Intelligence

The structure of a Python function contains a function header and …………… .

  1. return Statement
  2. Indented Block
  3. Function Body
  4. def Statement

Python Functions

1 Like

Answer

Function Body

Reason — The structure of a Python function consists of two parts: the function header and the function body. The function body contains the statements that define what the function does.

Answered By

3 Likes


Related Questions