Python Forum
Why is the while loop not working?
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Why is the while loop not working?
#6
Think about the logic. Currently you have

While Harry has not finished his Homework and Harry has not eaten his dinner
   No Xbox for Harry
Harry can play Xbox
What happens if Harry ate dinner but didn't finish his homework?

Harry has not finished his Homework = True
Harry has not eaten his Dinner = False
True and False == ?

Also, using else after a while statement is odd. You would use "else" if you wanted to differentiate exiting the loop because the while conditions were met from exiting the loop because of a "break". If you aren't using "break" you are just going to confuse anyone reading your code. Using else with a for loop is exactly the opposite. In a for loop the else code is only executed when the loop is terminated by a "break". So much for consistency. But nobody uses "else" with "while" and neither should you.
Reply


Messages In This Thread
Why is the while loop not working? - by mcoliver88 - Aug-18-2020, 12:45 PM
RE: Why is the while loop not working? - by Cryptus - Aug-18-2020, 01:46 PM
RE: Why is the while loop not working? - by Cryptus - Aug-18-2020, 02:03 PM
RE: Why is the while loop not working? - by deanhystad - Aug-18-2020, 03:27 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  while loop not working-I am using sublime text editor mma_python 4 1,186 Feb-05-2023, 06:26 PM
Last Post: deanhystad
  WHILE Loop - constant variables NOT working with user input boundaries C0D3R 4 1,529 Apr-05-2022, 06:18 AM
Last Post: C0D3R
  Infinite loop not working pmp2 2 1,679 Aug-18-2020, 12:27 PM
Last Post: deanhystad
  Loop not working Nonameface 8 2,977 Jul-19-2020, 12:27 PM
Last Post: snippsat
  for loop script over telnet in Python 3.5 is not working abhijithd123 1 2,925 May-10-2020, 03:22 AM
Last Post: bowlofred
  How to keep a loop containing a web import working in python executable? coder1384 3 2,909 Feb-22-2020, 06:49 PM
Last Post: snippsat
  For loop not working pjgrah01 4 2,849 Nov-03-2019, 11:58 PM
Last Post: pjgrah01
  Appending to list not working and causing a infinite loop eiger23 8 4,038 Oct-10-2019, 03:41 PM
Last Post: eiger23
  Working on my FOR loop wilsonrivas 1 2,237 May-24-2019, 04:05 PM
Last Post: heiner55
  plotting inside the loop is not working jenya56 4 3,123 Apr-10-2019, 08:11 PM
Last Post: perfringo

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020