Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
while True error
#1
im trying to prepare a program to basically to back to the start of the while true loop if no response was found how can I do this?
Reply
#2
continue will stop execution of the current loop iteration and start the next one.

while True:
    response = get_response()
    if not response:
        # whine that the response was bad
        continue
    # rest of loop happens if response was good
    ...
In some cases you might want to have a separate (inner) loop for the response, or you might want to have a different kind of loop (rather than an eternal while True:.
Reply
#3
works perfect thank you
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  while True: error 2wheelz4me 8 5,686 Oct-04-2019, 08:58 PM
Last Post: newbieAuggie2019
  While True is a syntax error? Piethon 8 17,101 Jul-21-2019, 12:40 PM
Last Post: metulburr
  Returning True or False vs. True or None trevorkavanaugh 6 14,180 Apr-04-2019, 08:42 AM
Last Post: DeaD_EyE

Forum Jump:

User Panel Messages

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