example-code-2e/08-def-type-hints/birds/daffy.py

7 lines
111 B
Python
Raw Normal View History

2020-06-11 19:58:15 +02:00
from birds import *
daffy = Duck()
alert(daffy) # <1>
alert_duck(daffy) # <2>
alert_bird(daffy) # <3>