108271 Views
83628 Views
56847 Views
48511 Views
47826 Views
47705 Views
Arduino Plug and Make Kit Review
Pi to Pico W Bluetooth Communication
Two-Way Bluetooth Communication Between Raspberry Pi Picos
Gamepad 2
Picotamachibi 2
Learning System updates
Introduction to the Linux Command Line on Raspberry Pi OS
How to install MicroPython
Wall Drawing Robot Tutorial
BrachioGraph Tutorial
Intermediate level MicroPython
Introduction to FreeCAD for Beginners
KevsRobots Learning Platform
80% Percent Complete
By Kevin McAleer, 2 Minutes
Python is a rich language with many advanced features. This lesson will introduce you to a few of these features: decorators, generators, and context managers. These tools can help you write more efficient and cleaner code.
Decorators allow us to wrap another function in order to extend the behavior of the wrapped function, without permanently modifying it.
def my_decorator(func): def wrapper(): print("Before function call") func() print("After function call") return wrapper @my_decorator def say_hello(): print("Hello!") say_hello() # prints: Before function call, Hello!, After function call
Generators are a type of iterable, like lists or tuples. Unlike lists, they don’t allow indexing with arbitrary indices, but they can still be iterated through with for loops.
def simple_generator(): yield 1 yield 2 yield 3 for value in simple_generator(): print(value) # prints: 1, 2, 3
Context managers allow you to allocate and release resources precisely when you want to. The most widely used example of context managers is the with statement.
with
with open('file.txt', 'r') as f: file_contents = f.read() # the file is automatically closed outside of the with block
In this lesson, you’ve learned about some of Python’s advanced features: decorators, generators, and context managers. These features can help you write more efficient and cleaner code. Understanding these concepts can be a stepping stone to mastering Python.
< Previous Next >