What did | Sololearn: Learn to code for FREE!
Новый курс! Каждый программист должен знать генеративный ИИ!
Попробуйте бесплатный урок
+ 1

What did

this code do. for i in range (x):

5th Apr 2017, 2:16 AM
stephen haokip
stephen haokip - avatar
1 ответ
+ 3
its a for loop range(x) will create a list of numbers from 0 to x then for loop go through each an element in the list. try below code for better understanding. x= 3 for i in range(x): print (i) output: 0 1 2
5th Apr 2017, 2:39 AM
Eranga
Eranga - avatar