KnowledgeBoat Logo
|

Informatics Practices

Which of the following is not a decision-making statement?

  1. if-elif statement
  2. for statement
  3. if-else statement
  4. if statement

Python Control Flow

4 Likes

Answer

for statement

Reason — The for statement is not a decision-making statement in Python. Instead, the for loop statement is used to iterate/repeat itself over a range of values or a sequence.

Answered By

3 Likes


Related Questions