KnowledgeBoat Logo
|

Robotics & Artificial Intelligence

A function in Python is called by:

  1. using the "call" keyword followed by the function name and parameters
  2. using the "invoke" keyword followed by the function name and parameters
  3. using the function name followed by parenthesis and arguments
  4. using the "run" keyword followed by the function name and parameters

Python Functions

2 Likes

Answer

using the function name followed by parenthesis and arguments

Reason — A function in Python is called or invoked by writing the function name followed by parentheses, with the required input values passed as arguments inside the parentheses.

Answered By

3 Likes


Related Questions