From 5c4b67fac467ec03a94b4c3d50344405f7443dc8 Mon Sep 17 00:00:00 2001 From: Chirag2007 <72174667+Chirag2007@users.noreply.github.com> Date: Wed, 30 Sep 2020 22:15:21 -0400 Subject: [PATCH] Update hello_world.py --- core-tutorial/hello_world.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core-tutorial/hello_world.py b/core-tutorial/hello_world.py index 974f97c..4f8e434 100644 --- a/core-tutorial/hello_world.py +++ b/core-tutorial/hello_world.py @@ -10,8 +10,9 @@ node2 = tf.constant(4.0) # also tf.float32 implicitly # Just prints info about the nodes. Doesn't actually run them. +# printing ("hello world") print(node1, node2) # Here, we actually run the nodes in a session sess = tf.Session() -print(sess.run([node1, node2])) \ No newline at end of file +print(sess.run([node1, node2]))