array of 1 to 100 python
myList = list(range(1, 101))
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])
range(n,n) python
# if numbers are same in the range function then,
# the range function outputs empty range
# this is because, there are no integers b/w n and n
for i in range(1,1):
print("runs")
# prints nothing
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