python loops
#x starts at 1 and goes up to 80 @ intervals of 2
for x in range(1, 80, 2):
print(x)
for python
list1 = [1,'hello',2] #we've created a list
for element in list1:
print(element) #we will print every element in list1
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 i in range(5, 9):
print(i)
for loops python
text = "Hello World"
for i in text:
print(i)
#Output
#H, e, l, l, o, , W, o, r, l, d
for i in range(10):
print(i)
#1, 2, 3, 4, 5, 6, 7, 8, 9, 10
for loop in python
# print (Hello !) 5 Times.
#(i) it's a name For Variable So You Can Replace it with any name.
for i in range(5):
print("Hello !")
|