Answers for "try and except in python used for"

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 and except in python

# Try and Except in python are for taking care of errors
# which may occur at runtime.
# For example:

# If flask is not installed, you will get an ImportError saying flask
# is not installed.
# The try keyword is to try running that block of code which may cause an error.
try:
    from flask import Flask
except ImportError:
    print('Flask is not installed! Use pip install flask to install it.')
Posted by: Guest on September-07-2021

Python Answers by Framework

Browse Popular Code Answers by Language