Skip to content

Instantly share code, notes, and snippets.

@rvasilevsk
Created November 6, 2022 14:13
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 rvasilevsk/058f7975800801acf53f5ea761d4b8d2 to your computer and use it in GitHub Desktop.
Save rvasilevsk/058f7975800801acf53f5ea761d4b8d2 to your computer and use it in GitHub Desktop.
[python check version] #python
if not sys.version_info.major == 3 and sys.version_info.minor >= 6:
print("Python 3.6 or higher is required.")
print("You are using Python {}.{}.".format(sys.version_info.major, sys.version_info.minor))
sys.exit(1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment