Lec8-Function Example HHZZ included in UCB-CS61A 2024-10-14 38 words One minute Contents 1 2 3 horse mask 装饰器 Function Example 1 1 2 3 4 5 def delay(arg): print('delayed') def g(): return arg return g 2 1 2 3 4 5 def pirate(arggg): print('matey') def plunder(): return arggg return plunder 3 horse mask 关键是两条红线 装饰器 本质上是一个HoF