ubuntu check python version code example
Example 1: check python version ubuntu
python3 --version
Example 2: python version command notebook
import platform
print(platform.python_version())
python3 --version
import platform
print(platform.python_version())