Explore >> Select a destination


You are here

dafoster.net
| | dylanpaulus.com
20.0 parsecs away

Travel
| | Debugging is an essential skill for any software developer. It allows us to find and fix errors in our code, improve quality and performance, and learn from our mistakes.One of the most common and powerful tools for debugging Python code is the . PDB is a module that provides an interactive command-...
| | chadaustin.me
11.5 parsecs away

Travel
| | This may be the only time I weigh in on the static vs. dynamic typing discussion. Each side has its extreme proponents, and people differ in their ability and desire to work in systems with implicit invariants. Many years ago, back when Java and C++ were the Mainstream Languages and Python was the shiny new up-and-comer, I read Bruce Eckel's arguments in support of dynamically typed languages, and some of the nonobvious (at the time) ways you can get more done at higher quality in a more flexible languag...
| | frenchy64.github.io
11.4 parsecs away

Travel
| |
| | blog.florimondmanca.com
32.1 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.