1 2 3 4 5 6 7 8 9
class Worm: @property def bore(self): """Property accessed with '.bore'.""" pass def bore_with_depth(depth): """Function called with .bore_with_depth(depth).""" pass