Skip to content

Instantly share code, notes, and snippets.

@glitchedmob
Created March 21, 2019 17:21
Show Gist options
  • Save glitchedmob/a44c0fae5b7113c16a1a66fb97732047 to your computer and use it in GitHub Desktop.
Save glitchedmob/a44c0fae5b7113c16a1a66fb97732047 to your computer and use it in GitHub Desktop.
def list_get(arr, index, default=None):
return arr[index] if index < len(arr) else default
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment