try: age=int(input('please enter your age: ')) 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')
Simple code error please help
Simple code error please help
|
Jun-02-2020, 09:13 PM
What's the error?
I welcome all feedback.
The only dumb question, is one that doesn't get asked. My Github How to post code using bbtags Download my project scripts
Jun-02-2020, 09:21 PM
It always says 'that can't be your age' no matter what i type
You cant add number to string.
you will need to change age to a string. Try this try: age = int(input('Enter age: ')) if age < 90: print(f'You are {age} years old') elif age >= 90: print('You are too old') else: print('I don\'t know your age') except ValueError as error: print('There has been an error')
I welcome all feedback.
The only dumb question, is one that doesn't get asked. My Github How to post code using bbtags Download my project scripts
Gives error :(
i figured it out but what was the main reason for mine not to work? what difference does the f' inside print make as well as the except part? Btw it says variable assigned but never used (for error) so i think it is more accurate just to say except except ValueError :
Jun-03-2020, 12:34 AM
You can't add strings and ints. This is what you were attempting.
s = "a string" i = 32 # print(s + i). Can't add strings and ints # TypeError: unsupported operand type(s) for +: 'int' and 'str' # you can add strings, so make one that looks like your int. print(s + str(i)) # The f-string style does this by assembling the string representation of any object print(f"{s}{i}")
Jun-07-2020, 11:10 PM
Thank you so much!
Jun-08-2020, 02:22 AM
(Jun-02-2020, 09:46 PM)bntayfur Wrote: Gives error :( This happens because of your indentation, fix the indentation of your code
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 |
|
Users browsing this thread: 1 Guest(s)