Created
March 9, 2016 02:26
-
-
Save violetyk/7719f010c112a5401523 to your computer and use it in GitHub Desktop.
Python型判定
This file contains hidden or 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
print isinstance(1, (int, unicode)) | |
# True | |
print isinstance(u'text', (int, unicode)) | |
# True | |
print isinstance('8-bit string', (int, unicode)) | |
# False |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment