age = int(input('please enter your age: ')) try: if age > 0: print("You are", age, "years old!") elif age > 90: print('you are too old!') except: print('that can\'t be your age')
[split] Very basic coding issue
[split] Very basic coding issue
|
Jun-03-2020, 11:17 AM
Did you have a question?
Jun-03-2020, 11:24 AM
Maybe you want to swap the if and elif - first check if age > 90 and then elif age > 0
If you can't explain it to a six year old, you don't understand it yourself, Albert Einstein
How to Ask Questions The Smart Way: link and another link Create MCV example Debug small programs
Jun-03-2020, 11:36 AM
age = input('please enter your age: ') while True : try: age = int(age) if age > 0 and age < 90: print("You are", age, "years old!") break elif age > 90: print('you are too old!') break except ValueError: print('that can\'t be your age') break3 different outputs :
pyzyx3qwerty
"The greatest glory in living lies not in never falling, but in rising every time we fall." - Nelson Mandela Need help on the forum? Visit help @ python forum For learning more and more about python, visit Python docs
actually it's better to have minimal number of lines in the try block, i.e. where you expect the error. Also, the input must be inside the loop (otherwise, why would you have a loop at all, if you break out in any case):
while True : age = input('please enter your age: ') try: age = int(age) except ValueError: print('that can\'t be your age') continue if age > 0 and age < 90: print("You are", age, "years old!") elif age > 90: print('you are too old!') breakor using else while True : age = input('please enter your age: ') try: age = int(age) except ValueError: print('that can\'t be your age') else: if age > 0 and age < 90: print("You are", age, "years old!") elif age > 90: print('you are too old!') break
If you can't explain it to a six year old, you don't understand it yourself, Albert Einstein
How to Ask Questions The Smart Way: link and another link Create MCV example Debug small programs |
|
Possibly Related Threads… | |||||
Thread | Author | Replies | Views | Last Post | |
[split] Help with my coding | happy_nutella | 1 | 647 |
Oct-08-2024, 06:52 PM Last Post: jefsummers |
|
Basic Coding Question: Exit Program Command? | RockBlok | 3 | 1,683 |
Nov-19-2023, 06:31 PM Last Post: deanhystad |
|
[split] Issue installing selenium | Akshat_Vashisht | 1 | 1,604 |
Oct-18-2023, 02:08 PM Last Post: Larz60+ |
|
[split] Is there some coding that will do the following in 3 separate events? | bensan | 23 | 9,366 |
Jul-27-2021, 03:48 PM Last Post: jefsummers |
|
Very basic coding issue | mstichler | 3 | 3,308 |
Jun-03-2020, 04:35 AM Last Post: mstichler |
|
Basic example Coding | gudlur46 | 2 | 2,730 |
Dec-19-2019, 01:55 PM Last Post: gudlur46 |
|
Python Coding Issue! | ankitdixit | 3 | 124,420 |
Sep-25-2019, 06:31 AM Last Post: rohanjoshi0894 |
|
Coding issue | 1557676 | 2 | 45,042 |
Aug-02-2019, 08:54 PM Last Post: cvsae |
|
Basic coding question with Python | Than999 | 3 | 3,757 |
Jul-17-2019, 04:36 PM Last Post: jefsummers |
|
Basic List Issue | rogueakula | 1 | 2,595 |
May-18-2019, 06:01 PM Last Post: snippsat |
Users browsing this thread: 1 Guest(s)