python check a library version code example
Example 1: check package version python
import packagename
print(packagename.__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__