- 2
How?
I don’t understand the last question in ‘range’
2 ответов
+ 2
By which, I assume, due to lack of information, you are referring to the last question in the Python course entitled "range".
For any curious souls, the question is as follows:
What is the output of this code?
nums = list(range(3, 15, 3))
print(nums[2])
Essentially, the first line gets an iterator in the range of 3 to 15 (exclusive) with a step of 3, and converts it to a list. So, nums looks like this:
[3, 6, 9, 12]
So, you want to find the element with the index 2, which is essentially the third element, which happens to be 9.
If you have any more questions, please feel free to ask.
0
Thanks blackcat1111, that really helped