python decorator

PHOTO EMBED

Tue Mar 01 2022 23:37:10 GMT+0000 (Coordinated Universal Time)

Saved by @Milados

def make_pretty(func):
    def inner():
        print("I got decorated")
        func()
    return inner


def ordinary():
    print("I am ordinary")
    
@make_pretty
def ordinary():
    print("I am ordinary")
content_copyCOPY

http://localhost:8888/notebooks/Untitled.ipynb?kernel_name