Last active
December 14, 2015 18:50
-
-
Save bastelflp/2fd50598d625f09d87d5 to your computer and use it in GitHub Desktop.
check python3 in one line
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 sys | |
PY3 = sys.version_info[0] == 3 | |
PY35 = sys.version_info[:2] == (3, 5) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment