Created
March 27, 2024 18:36
-
-
Save makwanadeepam/1293bdd5e3b8900a2fcd849783ff4040 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name=input("Enter your name: ") | |
| # input function by default takes string arguments | |
| try: | |
| x=input("Enter number to add with 5: ") | |
| print(x+5) | |
| except: | |
| print("Error") | |
| # What do you think happened? | |
| x=int(input("Enter number to add with 5 part 2: ")) | |
| print(x+5) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment