/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.derlin.ch
| | florimond.dev
2.4 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.
| | kishstats.com
3.5 parsecs away

Travel
| | Type hinting was added to the Python standard library starting in version 3.5. Python, being a dynamically typed language, does not enforce data types. Howev...
| | adamj.eu
2.0 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).
| | blog.ploeh.dk
16.0 parsecs away

Travel
| Combine a strong type system with Property-Based Testing to specify software.