Answer
1)Syntax Error
2)Logical Error
3)Run Time Error
Work Step by Step
-$Syntax$ $Error$:
The most common error you will encounter are syntax errors. Like any programming language, Python has its own syntax, and you need to write code that obeys the syntax rules. If your program violates the rules—for example, if a quotation mark is missing or a word is misspelled—Python will report syntax errors.
-$Logical$ $Error$:
Logic Errors occur when a program does not perform the way it was intended to. Errors of this kind occur for many different reasons.
-$Run$ $time$ $Error$:
Runtime errors are errors that cause a program to terminate abnormally. They occur while a program is running if the Python interpreter detects an operation that is impossible to carry out. Input mistakes typically cause runtime errors. An input error occurs when the user enters a value that the program cannot handle