From 3972c791b9f4d9a61b9ad6399b481df396f359ff Mon Sep 17 00:00:00 2001 From: Manjunath Kudlur Date: Wed, 25 Nov 2015 12:13:27 -0800 Subject: [PATCH] TensorFlow: Upstream changes to git. Changes: - Fix README example to not include implicit print Base CL: 108729071 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 44f85d97993..01d2081b476 100644 --- a/README.md +++ b/README.md @@ -64,11 +64,11 @@ $ python >>> import tensorflow as tf >>> hello = tf.constant('Hello, TensorFlow!') >>> sess = tf.Session() ->>> print sess.run(hello) +>>> sess.run(hello) Hello, TensorFlow! >>> a = tf.constant(10) >>> b = tf.constant(32) ->>> print sess.run(a+b) +>>> sess.run(a+b) 42 >>> -- GitLab