for loop in python with range
for i in range(-4,10):
if i**2!=9 :
print(i)
output:
-4
-2
-1
0
1
2
4
5
6
7
8
9
for loop in python with range
for i in range(-4,10):
if i**2!=9 :
print(i)
output:
-4
-2
-1
0
1
2
4
5
6
7
8
9
python range
# range(start, stop, step)
# start = (can be ommitted) index to begin at (INCLUSIVE)
# stop = generate numbers up to, but not including this number (EXCLUSIVE)
# step = (can be omitted) difference between each number in the sequence
# idx: 0 1 2 3 4
# arr: 19 5 3 22 13
arr = [19,5,3,22,13]
# range(stop)
for i in range(len(arr)):
print(arr[i]) # prints: 19, 5, 3, 22, 13
# range(start, stop)
for i in range(2, len(arr)):
print(arr[i]) # prints: 3, 22, 13
# range(start, stop, step)
for i in range(0, len(arr), 2):
print(arr[i]) # prints: 19, 3, 13
# reverse:
for i in range(len(arr)-1, -1, -1):
print(arr[i])
for loop example python 3
for num in nums:
for letter in 'abs':
print(num, letter)
range py
range(start, stop, step)
x = range(0,6)
for n in x:
print(n)
>0
>1
>2
>3
>4
>5
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