我正在處理這個簡單的任務,我需要使用2 while while循環。第一個while循環檢查小時數是否小於0,如果是循環,則應繼續詢問用戶。 這裏是我的代碼:如何在python中退出while循環?
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'))
請使用正確的格式。你的代碼不會像那樣執行。 – Goodies