What kind of error does this program contain?
age = int(input("Enter your age: "))
print("You are + str(age) " years old.")
(1 point)
division by zero
syntax error
logic error
data type mismatch
1 answer
syntax error
age = int(input("Enter your age: "))
print("You are + str(age) " years old.")
(1 point)
division by zero
syntax error
logic error
data type mismatch
1 answer