get version of package python code example
Example 1: get python version jupyter
from platform import python_version
print(python_version())
Example 2: check package version python
import packagename
print(packagename.__version__)
Example 3: how to check current version of library in python
#Let's say you want to check tensorflow version
import tensorflow as tf
tf.__version__