python loops
#x starts at 1 and goes up to 80 @ intervals of 2
for x in range(1, 80, 2):
print(x)
python loops
#x starts at 1 and goes up to 80 @ intervals of 2
for x in range(1, 80, 2):
print(x)
python for loop
for x in range(10):
print(x)
// output: 1,2,3,...,10
for x in range(10, 20, 2):
print(x)
// output: 10, 12, 14, 16, 18, 20
list = [2, 3, "el"]
for x in list:
print(x)
// output: 2, 3, "el"
python for loop
#to print number from 1 to 10
for i in range(1,11):
print(i)
#to print a list
l = [1,2,3,4]
for i in l:
print(i)
r = ["a","b","c","d","e"]
s = [1,2,3,4,5]
#print two list with the help of zip function
for p,q in zip(r,s):
print(p,q)
how to use for loops python
#simple for loop to print numbers 1-99 inclusive
for i in range(1,100):
print(i)
#simple for loop to loop through a list
fruits = ["apple","peach","banana"]
for fruit in fruits:
print(fruit)
python for loop
# Python for loop
for i in range(1, 101):
# i is automatically equals to 0 if has no mention before
# range(1, 101) is making the loop 100 times (range(1, 151) will make it to loop 150 times)
print(i) # prints the number of i (equals to the loop number)
for x in [1, 2, 3, 4, 5]:
# it will loop the length of the list (in that case 5 times)
print(x) # prints the item in the index of the list that the loop is currently on
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
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