Python Exceptions
Published: Feb 16, 2019
Last updated: Feb 16, 2019
The base example is to use a try/except block. You can raise exceptions in code that can be caught by the except block.
try: linux_interaction() except: print('Linux function was not executed')
Example case
class LinkedList: def __init__(self, head=None): self.head = head def getFirst(self): if self.head == None: raise Exception("No items in list") else: return self.head try: ll = LinkedList() ll.getFirst() except Exception, error: print(error)
Dennis O'Keeffe
Melbourne, Australia
Hi, I am a professional Software Engineer. Formerly of Culture Amp, UsabilityHub, Present Company and NightGuru.
I am currently working on Visibuild.
1,200+ PEOPLE ALREADY JOINED ❤️️
Get fresh posts + news direct to your inbox.
No spam. We only send you relevant content.
Python Exceptions
Introduction