Skip to content

Instantly share code, notes, and snippets.

@offby1
Created July 9, 2015 01:24
Show Gist options
  • Select an option

  • Save offby1/ddd833763de5685fd9ba to your computer and use it in GitHub Desktop.

Select an option

Save offby1/ddd833763de5685fd9ba to your computer and use it in GitHub Desktop.
>>> all(isinstance (x, int) for x in range (10))
True
>>> all(isinstance (x, int) for x in [1, 2, 3, 'whoops'])
False
>>>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment