Created
August 30, 2023 15:43
-
-
Save Infinitusvoid/43173ded5a21c060e1a50def2aafd7cb to your computer and use it in GitHub Desktop.
Python : How to get the version of 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
import sys | |
print("Python version :", sys.version) | |
print(" Version information : ", sys.version_info) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment