204k views
4 votes
Represent the following code in using Flowchart:

Using while loop, write a Python program that will print on the screen numbers from 1 till 100.

Represent the following code in using Flowchart: Using while loop, write a Python-example-1
User Auxten
by
7.9k points

1 Answer

4 votes

Answer:

n=100

while n>0:

print(n)

n=n-1

Explanation:

you'll substact 1 from n(which is 100) until n is equal to 0

User Monda
by
8.3k points