python for loop range
for i in range(0, 3):
print(i)
range in while loop python
i = 1
while i in range(0,10):
print("Hello world", i)
i = i + 1
# OUTPUT
Hello world 1
Hello world 2
Hello world 3
Hello world 4
Hello world 5
Hello world 6
Hello world 7
Hello world 8
Hello world 9
print(i)
10
Range python iterate by 2
for i in range(0,10,2):
print(i)
python for loop range
#Python range() example
print("Numbers from range 0 to 6")
for i in range(6):
print(i, end=', ')
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