KnowledgeBoat Logo
|

Robotics & Artificial Intelligence

Which of the following keywords is not used in conditional statements?

  1. if
  2. else
  3. elif
  4. go

Python Control Flow

1 Like

Answer

go

Reason — The keywords used in Python conditional statements are if, else, and elif. The keyword go is not a conditional keyword in Python.

Answered By

2 Likes


Related Questions