C-17-Q085mediumsingle_mcq
In Python, the function commonly used to generate the iteration values for a for loop is:
In Python, the function commonly used to generate the iteration values for a for loop is:
- a
range - b
len - c
print - d
input
ব্যাখ্যা
Python's built-in range() function produces the sequence of values that a for loop iterates over. It is the standard way to drive a counted loop in Python.