Merge branch 'master' into feat/py2-to-py3-in-speed-section

This commit is contained in:
Dan Bader
2021-02-23 09:10:57 -08:00
committed by GitHub
3 changed files with 25 additions and 27 deletions
+2 -2
View File
@@ -87,8 +87,8 @@ Let's see what we got exactly:
.. code-block:: python
print 'Buyers: ', buyers
print 'Prices: ', prices
print('Buyers: ', buyers)
print('Prices: ', prices)
::