@@ -37,7 +37,7 @@
"source": [
"# Create a Tensor.\n",
"hello = tf.constant(\"hello world\")\n",
- "print hello"
+ "print(hello)"
]
},
{
@@ -55,7 +55,7 @@
],
"# To access a Tensor value, call numpy().\n",
- "print hello.numpy()"
+ "print(hello.numpy())"
}