Skip to content

Instantly share code, notes, and snippets.

@uncoded-ro
Last active January 10, 2020 07:41
Show Gist options
  • Save uncoded-ro/40fe4939eac8cb8b1f9b0d6219dda6e8 to your computer and use it in GitHub Desktop.
Save uncoded-ro/40fe4939eac8cb8b1f9b0d6219dda6e8 to your computer and use it in GitHub Desktop.
try:
a = [1, 2, 3]
print(a[3])
except LookupError:
print("Index out of bound error.")
else:
print("Success!")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment