conda tensorflow version check code example
Example 1: tensorflow version check
import tensorflow as tf
print(tf.__version__)
Example 2: how to check tensorflow version
pip show tensorflow
import tensorflow as tf
print(tf.__version__)
pip show tensorflow