- 1
как это расчитать
nums=[5,4,3,2,1,] print nums[1]
5 ответов
+ 3
в питоне расчет всегда с 0 , функция возвращает 1-ое (второе по порядку ) значение ;)
0
в чем вопрос? ответ 4, вводили в редактор?
0
я не понял как 4 получается
0
теперь понял. спс
0
people count 12345....
computers/python counts 01234...
that is why the 1. element 5 in python is the 0. element.
2. element is 4 but in python 4 is the 1. element.
totally there are 5 elements but python indexes them starting with 0. it means 0, 1, 2, 3, 4.