Python
entities · 19 notes linked
Related: Functional Programming · Flask · Cpython · Data Structures · Stackoverflow · R Language · Higher Order Functions · Currying
Notes
- 25.3. unittest — Unit testing framework — Python's built-in xUnit testing framework API and concepts
- A string of unexpected lengths - Blog - Recurse Center — Three ways string byte-length diverges from terminal display width
- Anti-Patterns in Python Programming — Common Python beginner mistakes and idiomatic alternatives
- Creating Web APIs with Python and Flask — Tutorial building a REST-style web API with Python Flask and SQLite
- Extending Python with Numerical Recipes — Tutorial for wrapping C++ Numerical Recipes code as callable Python modules
- Functional Programming with Python — Functional programming patterns in Python via slides and examples
- Hidden features of Python — Lesser-known Python language features and hidden tricks
- Libraries — Categorized reference of Python libraries circa 2014
- Other Versions — Practical Python performance optimization techniques and profiling tools
- PEP 289 – Generator Expressions | peps.python.org — Python PEP introducing memory-efficient generator expressions in Python 2.4
- Python Patterns - An Optimization Anecdote — Iterative Python optimization from naive loop to 12x speedup
- Python Time Complexity Reference — Big-O complexity of CPython built-in data structure operations
- Python moves to remove the GIL and boost concurrency — PEP 703 plan to make CPython GIL optional then remove it
- R beats Python! R beats Julia! Anyone else wanna challenge R? — Argument for R's superiority in statistics and data science over Python and Julia
- Running Python and R inside Emacs — Emacs org-mode babel executing code blocks inline with output
- The Python Standard Library — Python 2 standard library reference index covering all built-in modules
- Understanding Python Decorators in 12 Easy Steps! — Step-by-step tutorial building Python decorators from first principles
- What does the "yield" keyword do in Python? — Python yield keyword creates generator objects lazily
- list — CPython built-in container Big-O operation complexity reference