Python __version__

# in the terminal type on 
python -V    Or    python --version

#in the console

import sys
print(sys.version)
guruwalker