check current version of python module in terminal code example
Example 1: how to find the version of python command linw
python --version
Example 2: how to check current version of library in python
#Let's say you want to check tensorflow version
import tensorflow as tf
tf.__version__