Explore >> Select a destination


You are here

www.daniellowengrub.com
| | pymotw.com
2.5 parsecs away

Travel
| | [AI summary] This technical guide explains how Python's dis module works to disassemble Python bytecode for purposes such as debugging errors and optimizing code performance through detailed stack analysis.
| | www.henryleach.com
4.3 parsecs away

Travel
| | I have a habit of adding return 0 to the end of my Python main() functions, even if they don't actually return anything. A friend pointed this weirdness out, and guessed, probably correctly, that this is a habit from C/C++ where returning 0 means 'everything went as expected'. But does that make any sense at all in Python?
| | www.hackerculture.com
1.3 parsecs away

Travel
| | Learn how to set up Python, what a computer program is, how to write programs, how to create variables to name values, and how to do basic math operations.
| | benhoyt.com
21.2 parsecs away

Travel
| An explanation of how to implement a simple hash table data structure, with code and examples in the C programming language.