Computer Science, asked by vineetkaur1082, 1 month ago

program to display all the numbers from100 to 91 using for loop

Answers

Answered by shrutithakuryoyo
0

Answer:

We will take a range from 1 to 101. Then, print all numbers in an interval 1 to 101 using the For Loop.

# Python program to print numbers from 1 to 100 print('Numbers from 1 to 100:') for n in range(1, 101): print(n, end=' ')

Please mark me as a brainliest.

Thank you

Similar questions