1Misspelled or incorrectly capitalized variable and function names
2
3-Attempts to perform operations (such as math operations) on data of the wrong type (ex. attempting to subtract two variables that hold string values)
4-Dividing by zero
5-Attempts to use a type conversion function such as int on a value that can’t be converted to an int
1Some examples of Python Runtime errors −
2
3
4
5division by zero
6performing an operation on incompatible types
7using an identifier which has not been defined
8accessing a list element, dictionary value or object attribute which doesn’t exist
9trying to access a file which doesn’t exist