I'm a beginner of Python and I got a problem here. I just copied what my textbook says but I got an error here. I put the following code.
if return_age != 0:
print"Your age is %s years" %(return_age)
Then my laptop says
File "<ipython-input-3-8c2f6bc68809>", line 15
print"Your age is %s years" %(return_age)
^
SyntaxError: invalid syntax
Please explain how to correct this bug. Thanks in advance.