The range function in Python has the definitions range(stop) or range(start, stop[, step]). The following code snippet will print the numbers 0-9 inclusive.

for i in range(10):
print(i, end = " ")
print()

How can the code be modified to change the output to be the numbers 1-10 inclusive?
(1 point)
Responses

for i in range(0,10):

for i in range(0,10):

for i in range(1,11):

for i in range(1,11):

for i in range(10,1):

for i in range(10,1):

for i in range(1,10):

for i in range(1,11):

The correct answer is:

for i in range(1,11):

The correct modification to change the output to be the numbers 1-10 inclusive is

`for i in range(1, 11):`