Error
JavaScript
x
5
1
Traceback (most recent call last):
2
File "C:UsersAlexPythonLesson01.py", line 5, in <module>
3
print("In 10 years you will be ", a+b, "years old")
4
TypeError: can only concatenate str (not "int") to str
5
At the moment I am Learning Python 3 and got this error. What does it mean? I also tried +
instead of the comma this is also not working :/
Here is the code:
JavaScript
1
6
1
user_input = input("How old are you?n-> ")
2
3
a = user_input
4
b = 10
5
print("In 10 years you will be ", a+b, "years old")
6
Advertisement
Answer
You have to print this:
JavaScript
1
7
1
user_input = int(input("How old are you?n-> "))
2
3
a = user_input
4
b = 10
5
print("In 10 years you will be " + str(a+b) + " years old")
6
7
this should work fine