Upd of print func to py3 syntax

This commit is contained in:
Matheus Felipe
2021-02-22 20:05:12 -03:00
parent 266b4c4f42
commit ed39c488ff
+2 -2
View File
@@ -87,8 +87,8 @@ Let's see what we got exactly:
.. code-block:: python .. code-block:: python
print 'Buyers: ', buyers print('Buyers: ', buyers)
print 'Prices: ', prices print('Prices: ', prices)
:: ::