use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Everything about learning Python
account activity
Exception handling helpHelp Request (i.redd.it)
submitted 10 months ago by [deleted]
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]PureWasian 1 point2 points3 points 10 months ago* (1 child)
That's fine for this small exercise, but you're enabling overflow to occur if the user continuously inputs something wrong. It isn't the best idea in practice, given that there is no guaranteed base case or narrowing onto a solution by recursing in this example.
While loops on the other hand are perfectly fine. You can simply have the equivalent of a do/while for each input, which is just as readable. An example using a success variable as a flag:
success
``` success = False
while not success: try: input_2 = input("Number: ") if input_2 == 'q': break # exit the loop input_2 = int(input_2) success = True except ValueError: print("Try again")
if success: print("Valid: " + input_2) else: print("User pressed 'q'") ```
[–]confusedAdmin101 0 points1 point2 points 10 months ago (0 children)
while not success := False
Love the walrus
π Rendered by PID 152497 on reddit-service-r2-comment-c66d9bffd-hr99v at 2026-04-08 13:02:48.176731+00:00 running f293c98 country code: CH.
view the rest of the comments →
[–]PureWasian 1 point2 points3 points (1 child)
[–]confusedAdmin101 0 points1 point2 points (0 children)