check python version colab

Solutions on MaxInterview for check python version colab by the best coders in the world

showing results for - "check python version colab"
Neele
09 Jul 2017
1# --------------------------------------
2# OUTPUT 19/07/2021: 3.7.11
3# --------------------------------------
4import sys
5print(sys.version)
6# ----------------------[alternative]---
7!python --version  # checks version from command line
8
9