I'm a beginner and created a program that asks user to input his percentage and tell him whether his result is good or bad. My code is
per=float(input('Enter your percentage: '))
if per>80%:
print('Your result is good')
else:
print('Your result is bad')
But I always get this error
File "<ipython-input-65-ea1a86d3daa1>", line 2
if per>80%:
^
SyntaxError: invalid syntax
How do I solve it?