Explore >> Select a destination


You are here

initialcommit.com
| | aaronluna.dev
4.6 parsecs away

Travel
| | Decorators can be a daunting topic when first encountered. While the Zen of Python states "There should be one- and preferably only one -obvious way to do it", there are many, equally valid ways to implement the same decorator. These different methods can be categorized as either function-based, class-based, or a hybrid of both. In this post I will explain the design and behavior of Python decorators and provide examples of decorators that I frequently use in my own code.
| | www.jeremymorgan.com
2.9 parsecs away

Travel
| | Want to write and call functions with Python? Here's a complete step by step guide to help you master this skill.
| | simeonfranklin.com
1.8 parsecs away

Travel
| | Simeon Franklin - Web Developer
| | blog.valentin.sh
31.0 parsecs away

Travel
| [AI summary] The author analyzes the performance of a command-line todo program, identifying that the majority of the execution time is due to Python interpreter startup and standard library imports, rather than their own code.