notebook.community
Edit and run
In [4]: import tensorflow as tf a = tf.constant(r'Hello World !') s = tf.Session() print(s.run(a))
import tensorflow as tf a = tf.constant(r'Hello World !') s = tf.Session() print(s.run(a))
Hello World !
In [ ]: