Python Forum
Fundamental understanding-problem regards to while-loops
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Fundamental understanding-problem regards to while-loops
#3
Hi, thanks a lot for replying - it helps me already quite a lot^^

I would have 2 questions as for your code:
1.) Regards to the first line: 'How on earth python knows what 'attempts' are?
My guess, it cannot know it and it does not matter, since due to the range() methode it will just iterate 5 times, whatever the keyword is, right?

2.) the output of your code after 5 iterations does look like that:

Output:
Python 3.7.0 (v3.7.0:1bf9cc5093, Jun 27 2018, 04:06:47) [MSC v.1914 32 bit (Intel)] on win32 Type "copyright", "credits" or "license()" for more information. >>> RESTART: C:/Users/kr-ga/AppData/Local/Programs/Python/Python37-32/BOOK_automate_the/Chapter 6/test.py Enter your age: hs Please enter a number for your age. Enter your age: sh Please enter a number for your age. Enter your age: hs Please enter a number for your age. Enter your age: hs Please enter a number for your age. Enter your age: sh Please enter a number for your age. Traceback (most recent call last): File "C:/Users/kr-ga/AppData/Local/Programs/Python/Python37-32/BOOK_automate_the/Chapter 6/test.py", line 7, in <module> raise Exception('Wrong age in 5 attempts') Exception: Wrong age in 5 attempts >>>
Can we somehow change the code, so that python prints ot fpr the user a nice message, such as 'Sorry, too many attempts' before breaking with an 'ugly' error-message after 5 falied attempts?
Reply


Messages In This Thread
RE: Fundamental understanding-problem regards to while-loops - by Placebo - Oct-10-2018, 05:40 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Exporting Stock Fundamental Data to a CSV file with yahoo_fin DustinKlent 2 4,745 Aug-01-2022, 06:08 PM
Last Post: paulyan
  problem with for loops? Darbandiman123 1 2,025 Sep-26-2018, 06:35 PM
Last Post: nilamo
  Need help with understanding for/while loops! WombatHat42 2 2,355 Sep-26-2018, 11:46 AM
Last Post: ThiefOfTime

Forum Jump:

User Panel Messages

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