Friday, 28 June 2019

Errors in Python

In python, there are three types of errors; syntax errors, logic errors and exceptions.


You may like the following posts:
Syntax Errors in Python

1 comment:

Files with Exception handling

#Ask the user to take two input integer values var a,b try:     a=int(input("enter any integer value:"))     b=int(input(&qu...