QuestenaPractice that shows what to review next
Question 61

What does a Python for loop obtain from the expression after in and bind to its target on each pass?

  1. Only integer positions from a list
  2. Successive items from an iterableCorrect answer
  3. Only values produced by range
  4. A copied list made before the loop

Explanation

A for loop asks an iterable for successive items and binds each item to the loop target. It does not require a numeric counter, and strings and other iterables work even though they are not lists.

Continue with this test

Start practice
Question 61: What does a Python for loop obtain from the expression… · Python Fundamentals · Questena