Knowledge organisersInput
Cast input to numbers.
Since input() always returns a string, you must cast it to int or float before doing maths. Wrap the input() call inside int() or float().
int(input("Age: ")) converts to integer in one linefloat(input("Price: ")) for decimals+ concatenates instead of addingValueErrorage = int(input("Enter your age: "))
next_year = age + 1
print("Next year you will be", next_year)