1/3
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced | Call with Kai |
|---|
No analytics yet
Send a link to your students to track their progress
*args
we can use the wildcard or * notation to write functions that accept any number of arguments
**kwargs
we can use ** notation to write functions that accept any number of keyword arguments
order of parameters
(parameters, args, default parameters, *kwargs)
raising exceptions
we can raise our own exceptions (force them to happen) whenever we want, using the raise keyword