python for loop
for i in range(5):
print(i) #0, 1, 2, 3, 4
for i in range(2, 8):
print(i) #2, 3, 4, 5, 6, 7, 8
for i in range(2, 10, 2):
print(i) #2, 4, 6, 8, 10
for i in (['a', 'b', 'c']):
print(i) #a, b, c
python for loop
for i in range(5):
print(i) #0, 1, 2, 3, 4
for i in range(2, 8):
print(i) #2, 3, 4, 5, 6, 7, 8
for i in range(2, 10, 2):
print(i) #2, 4, 6, 8, 10
for i in (['a', 'b', 'c']):
print(i) #a, b, c
python for loop
A for loop iterates through an iterable, may that be an array, a string, or a range of numbers
#Example:
myArr = ["string 1", "string 2"]
for x in myArr:
print(x)
#Returns "string 1", "string 2". In here the x is an iterator and does not need to be defined.
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