example-code-2e/08-def-type-hints/birds/daffy.py
2020-06-11 14:58:15 -03:00

7 lines
111 B
Python

from birds import *
daffy = Duck()
alert(daffy) # <1>
alert_duck(daffy) # <2>
alert_bird(daffy) # <3>