aboutsummaryrefslogtreecommitdiffhomepage
path: root/README.md
diff options
context:
space:
mode:
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
>>>