In [1]:
import tensorflow as tf
tf.__version__


Out[1]:
'1.2.0'

In [2]:
hello = tf.constant("Hello, World")

sess = tf.Session()

print(sess.run(hello))


b'Hello, World'

In [6]:
x = [1,2,3]

adder = tf.add(x , 1)

result = sess.run(adder)

print(result)


[2 3 4]

In [ ]: