program to display all the numbers from100 to 91 using for loop
Answers
Answered by
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
Science,
24 days ago
Computer Science,
24 days ago
Math,
1 month ago
Science,
9 months ago
Social Sciences,
9 months ago