sync with O'Reilly Atlas

This commit is contained in:
Luciano Ramalho
2021-07-07 23:45:54 -03:00
parent f0f160844d
commit 23e78eeb82
64 changed files with 2087 additions and 124 deletions

View File

@@ -0,0 +1,16 @@
"""
``Coordinate``: a simple class with a custom ``__str__``::
>>> moscow = Coordinate(55.756, 37.617)
>>> print(moscow) # doctest:+ELLIPSIS
<coordinates.Coordinate object at 0x...>
"""
# tag::COORDINATE[]
class Coordinate:
def __init__(self, lat, lon):
self.lat = lat
self.lon = lon
# end::COORDINATE[]