Skip to content

Commit

Permalink
Make tutorial Python 3 friendly
Browse files Browse the repository at this point in the history
Use `print(d)` instead of `print d`.
  • Loading branch information
ludwigschwardt committed May 9, 2019
1 parent a126fbe commit ecb9a27
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.rst
Expand Up @@ -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::

Expand Down Expand Up @@ -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::

Expand Down

0 comments on commit ecb9a27

Please sign in to comment.