/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

blog.ian.stapletoncordas.co
| | eli.thegreenplace.net
2.8 parsecs away

Travel
| | [AI summary] This article explains how to add a new 'until' statement to Python's compiler by modifying its grammar, AST generation, and bytecode compilation processes.
| | blog.florimondmanca.com
2.2 parsecs away

Travel
| | Type hints add optional static typing to Python 3.5+, and I love them. I now use annotated variables throughout my projects.
| | adamj.eu
1.9 parsecs away

Travel
| | In a type hint, if we specify a type (class), then we mark the variable as containing an instance of that type. To specify that a variable instead contains a type, we need to use type[Cls] (or the old syntax typing.Type).
| | initialcommit.com
13.3 parsecs away

Travel
| In this article, you'll get a detailed look at how to use the sum function in Python, as well as how it differs from the plus sign operator.