Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

python try else

try:
   # Code to test / execute
   print('Test')
except (SyntaxError, IndexError) as E:  # specific exceptions
   # Code in case of SyntaxError for example
   print('Synthax or index error !')
except:
   # Code for any other exception
   print('Other error !')
else:
   # Code if no exception caught
   print('No error')
finally:
   # Code executed after try block (success) or any exception (ie everytime)
   print('Done')

# This code is out of try / catch bloc
print('Anything else')
Comment

python try else

try:
    a=2*3
except TypeError:
    print("Exception raised")
else:
    print("Everything is ok.")
Comment

PREVIOUS NEXT
Code Example
Python :: puppy and sum codechef solution 
Python :: python type hinting pandas dataframe 
Python :: run a python script from another python script on a raspberry pi 
Python :: Python program to count Even and Odd numbers using lambda 
Python :: sort dictionary by key 
Python :: discord.py get id of sent message 
Python :: python string in list 
Python :: calculate pointbiseral correlation 
Python :: how to add subtitle to plot in python 
Python :: python print function 
Python :: send serial commands in python 
Python :: remote python running line by line visual code 
Python :: python - count number of occurence in a column 
Python :: read cells in csv with python 
Python :: remove file os python 
Python :: how to install os module in python 
Python :: how to define a class in python 
Python :: python convert string to list of dictionaries 
Python :: how to get pytroch model layer name 
Python :: make password python 
Python :: getting input in python 
Python :: raw input py 
Python :: python socket get client ip 
Python :: matplotlib legend number columns 
Python :: merge two columns name in one header pandas 
Python :: pygame make a window 
Python :: sort a dict by values 
Python :: pandas filter on two columns 
Python :: python turtle module 
Python :: how to find unique values in numpy array 
ADD CONTENT
Topic
Content
Source link
Name
7+7 =