Python Object Basics: Functions, Recursion, and Objects
- User-Defined Functions
- Re-use pieces of code by wrapping them in functions. You can create functions that take in and/or return data.
- Recursion
- Use recursion for special cases of iteration.
- Introduction to Objects
- Learn about user-defined classes and how to use them to create objects.
- Mutability
- Change the attributes associated with an object through methods.