I'm getting the error "TypeError: cannot concatenate 'str' and 'int' objects" when i try running this for some reason
I'm following a tutorial on YouTube and it seems to work for them
name = "Tan"
age = 20
print("Hello my name is " + name + " and i am " + age + " years old")
age = 17
name = "Taq"
print("Hello my name is " + name + " and i am " + age + " years old")
The age is meant to be assigned as 20 and then as 17 but it just gives an error.