9.9k views
23 votes
I need help with this. It's while loops in python.

I need help with this. It's while loops in python.-example-1
User Cfusch
by
4.8k points

1 Answer

4 votes

Answer:

Here is a simple application running loop example in python

running = true

while(running):

# YOUR CODE HERE

Step-by-step explanation:

A while loop is basically a loop of something if something is true

so if there is a boolean set to true for a application to run then use a while loop. Have a nice day! :)

User Lorenz Walthert
by
4.8k points