Skip to content

Instantly share code, notes, and snippets.

@blueskyarea
Created June 1, 2017 14:10
Show Gist options
  • Save blueskyarea/a0600cac32c78f40dfb2cee163bc9286 to your computer and use it in GitHub Desktop.
Save blueskyarea/a0600cac32c78f40dfb2cee163bc9286 to your computer and use it in GitHub Desktop.
check for installed python version
#!/usr/bin/env python
import sys
IS_PYTHON2 = sys.version_info[0] == 2
if IS_PYTHON2:
print 'Hello, version 2'
else:
print 'Hello, version 3'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment