In [1]:
import tensorflow as tf

In [2]:
hello = tf.constant('Hello, Vainius!')

In [4]:
with tf.Session() as session:
    print(session.run(hello))


b'Hello, TensorFlow!'