Answers for "except statement in python"

2

python try except

try:
  val = 1/0 
except Exception as e:
  raise Exception('ZeroDivisionError')
Posted by: Guest on January-26-2021
3

try except python

try: #try to do the following
  print("Hi there")
except: #If what is meant to happen in (try) fails, do this.
  print("A error happened with the code above")
Posted by: Guest on September-29-2020
0

try except example python

num1 , num2 = input("Give me two numbers: ").split(',')
try:
    num1 = int(num1)
    num2 = int(num2)
    print(num1/num2)
    
except ZeroDivisionError:
    print("your number2 is 0!")
    
except ValueError:
    print("Please enter number")

except:
    print("error")
#except TypeError:
    #print("Cant sum int with str!")
    
#finally:
    #print("end code")
finally:
    print("error code finally")
    
print("end code")

#code by fawlid
Posted by: Guest on November-09-2021

Code answers related to "except statement in python"

Python Answers by Framework

Browse Popular Code Answers by Language