KnowledgeBoat Logo
|

Robotics & Artificial Intelligence

Which of the following is not a built-in function in Python?

  1. input()
  2. print()
  3. len()
  4. add()

Python Functions

1 Like

Answer

add()

Reason — Built-in functions are functions that are already defined in Python, such as input(), print(), and len(). The function add() is not listed as a built-in function.

Answered By

2 Likes


Related Questions