#100DaysOfCode in Python Transcripts
Chapter: Days 22-24: Decorators
Lecture: Lesson introduction
Login or
purchase this course
to watch this video and the rest of the course contents.
0:00
Welcome back to the 100 days of Python.
0:02
Today we look at an important concept which are decorators.
0:05
It might be daunting at first,
0:07
but they're not that hard to grasp,
0:09
and they take your Python knowledge to the next level.
0:11
First we write a simple decorator
0:13
and see how we can decorate a function
0:16
to add additional behavior.
0:18
Then we make a quick detour
0:19
to explain the different ways functions
0:21
and Python can receive different kind of arguments.
0:24
Then we write a second decorator
0:26
and see how they can be stacked up.
0:28
Then we look at some further references,
0:30
and for the second and third day,
0:32
I got a couple of practical exercises
0:35
to hone your newly gained decorator skills.
0:38
All right, let's do this.