What did | Sololearn: Learn to code for FREE!
Novo curso! Todo programador deveria aprender IA generativa!
Experimente uma aula grƔtis
+ 1

What did

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

5th Apr 2017, 2:16 AM
stephen haokip
stephen haokip - avatar
1 Resposta
+ 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