-
-
Save stephengruppetta/1e3d43c4ff5912de6facf571bb4449f1 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import collections | |
# Dictionary | |
print(isinstance({"Jim": 10, "Chris": 12}, collections.abc.Collection)) | |
# True | |
# Tuple | |
print(isinstance((2, 4, 6), collections.abc.Collection)) | |
# True | |
# range object | |
print(isinstance(range(5, 10), collections.abc.Collection)) | |
# True |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment