aboutsummaryrefslogtreecommitdiffhomepage
path: root/README.md
diff options
context:
space:
mode:
authorGravatar Manjunath Kudlur <keveman@gmail.com>2015-11-25 12:13:27 -0800
committerGravatar Manjunath Kudlur <keveman@gmail.com>2015-11-25 12:13:27 -0800
commit3972c791b9f4d9a61b9ad6399b481df396f359ff (patch)
tree176fbe5d6d937236bab4e595259f31de63489dc8 /README.md
parent5fdf9a66e84c96cad51485b19de1a35bb9a1a173 (diff)
TensorFlow: Upstream changes to git.
Changes: - Fix README example to not include implicit print Base CL: 108729071
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 44f85d9799..01d2081b47 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
>>>