From ecb9a275de3606903dd8369f9787850799742c48 Mon Sep 17 00:00:00 2001 From: Ludwig Schwardt Date: Thu, 9 May 2019 16:33:59 +0200 Subject: [PATCH] Make tutorial Python 3 friendly Use `print(d)` instead of `print d`. --- README.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index 450d1ad6..0e31b69b 100644 --- a/README.rst +++ b/README.rst @@ -50,7 +50,7 @@ Inspect the contents of the data set by printing the object: .. code:: python - print d + print(d) Here is a typical output:: @@ -116,7 +116,7 @@ Let's select a subset of the data set: .. code:: python d.select(scans='track', channels=slice(200, 300), ants='ant4') - print d + print(d) This results in the following printout::