Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to exit a while loop in python?

Tags:

python

I'm working on this simple task where I need to use 2 while loops. The first while loop checks if the number of hours is less than 0 if it is then loop should keep asking the user. Here's my code:

hours = float(input('Enter the hours worked this week: '))

count = 0
while (0 > hours):
    print ('Enter the hours worked this week: ')
    count = count + 1

pay = float(input('Enter the hourly pay rate: '))
while (0 > pay):
    print ('Enter the hourly pay rate: ')
    count = count + 1

total_pay = hours * pay

print('Total pay: $', format(total_pay, ',.2f'))
like image 509
Devmix Avatar asked May 06 '26 03:05

Devmix


2 Answers

break is what you're looking for.

x = 100
while(True):
    if x <= 0:
        break
    x -= 1
print x # => 0

As for your example, there is nothing that would seem to cause a break to occur. For example:

hours = float(input('Enter the hours worked this week: '))

count = 0

while (0 > hours):
    print ('Enter the hours worked this week: ')
    count = count + 1

You are not editing the hours variable at all. This would merely continue to print out "Enter the hours worked this week: " and increment count ad infinitum. We would need to know what the goal is to provide any more help.

like image 169
Goodies Avatar answered May 07 '26 18:05

Goodies


You exit a loop by either using break or making the condition false.

In your case, you take input from the user, and if hours < 0, you print the prompt and update the count, but you don't update hours.

while (0 > hours):
    print ('Enter the hours worked this week: ')
    count = count + 1

should be:

while (0 > hours):
    hours = float(input('Enter the hours worked this week: '))
    count = count + 1

Similarly for pay:

while (0 > pay):
    pay = float(input('Enter the hourly pay rate: '))
    count = count + 1
like image 30
munk Avatar answered May 07 '26 17:05

munk



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!