Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created April 24, 2019 16:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/0545feb2646084d812fd79550194938c to your computer and use it in GitHub Desktop.
Save parzibyte/0545feb2646084d812fd79550194938c to your computer and use it in GitHub Desktop.
print(type([1, 2, 3]) is list) # True
print(type([1, 2, 3]) is dict) # False
print(type([1, 2, 3]) is int) # False
print(type([1, 2, 3]) is float) # False
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment