Python Descriptors and How to Use them

Explaining Python Descriptors with examples

Artemis N.
Towards Data Science
6 min readMar 14, 2022

--

Photo by Alex Chumak on Unsplash

Introduction

You may not know what Python Descriptors are but if you’ve been programming in Python chances are that you have already, indirectly, used them! They are behind things like properties (defined through the @property decorator) and methods.

--

--