get version of python package code example
Example 1: check package version python
import packagename
print(packagename.__version__)
Example 2: how to find python version
python --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__