python for loop
for i in range(5, 9):
print(i)
python for loop
for num in range(5): # range(5) generates numbers from 0 to 4(inclusive)
print(num) # for each iteration num has value assigned by range function
python for loop
for item in ['mosh','john','sarah']:
print(item)
python for loop
#an object to iterate over
items = ["Item1", "Item2", "Item3", "Item4"]
#for loop using range
for i in range(len(items)):
print(items[i])
#for loop w/o using range
for item in items:
print(item)
python for loop
//x starts at 1 and goes up to 5 increasing by 2
for x in range(1,5,2):
print(x)
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us