import tensorflow as tf print(tf.__version__)
2.0.0
a = tf.constant(3.0) b = tf.constant(5.0) c = a*b
print(c)
tf.Tensor(15.0, shape=(), dtype=float32)