Classify the range rules for range(stop) and range(start, stop, step). Which statements are true? Select all that apply.
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.