QuestenaPractice that shows what to review next
Question 62

Classify the range rules for range(stop) and range(start, stop, step). Which statements are true? Select all that apply.

  1. An omitted start is zero.Correct answer
  2. The stop value is excluded.Correct answer
  3. An omitted step is one.Correct answer
  4. The produced values are floats.
  5. The stop value is always included.

Explanation

A range begins at zero when no start is supplied, uses a default step of one, and never includes its stop value. The claim that it produces floating-point values is false because ordinary range objects produce integers.

Continue with this test

Start practice
Question 62: Classify the range rules for range(stop) and range(start,… · Python Fundamentals · Questena