how to check the version of tensorflow in a code example
Example 1: check tensorflow version
import tensorflow as tf
tf.__version__
Example 2: how to find the version of tensorflow command linw
!python -c 'import tensorflow as tf; print(tf.__version__)'