using range in python for loop code example

Example 1: 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

Example 2: for i in range python

times_repeated = 10

for i in range(1, times_repeated + 1): #1 is the starting point and times_repeated is how much times the loop with run.
  print(i) #Prints 1 2 3 4 ... 10