wheelerof4te

↗ HN profile [ 50.5 ms ] full profile
Karma
451
Created
November 18, 2021 (4y ago)
Submissions
0
  1. People used to say all kinds of things about Python's native IDLE editor, but lately it has become a viable alternative for me to other editors like Notepad++. At least on Windows, where you have no autocompletion when…

  2. On behalf of every Python developer who still considers Python a true dynamic language, just stop. We don't need static typing, we need other, much more useful things. Like stability, reliability, speed and good…

  3. What is the best way to manage state in Python, without resorting to classes? Do you use dataclasses, or keep everything as close to functional as you can? I don't find Python's object oriented style pythonic, and would…

  4. I have had this dilemma ever since I started programming in Python 3 years ago. I am a strong believer in procedural programming, with some functional goodness thrown in. My argument is that procedures and functions…

  5. Modern Python versions (3.6+) have a memory performance optimization for dictionaries, where dict keys are shared between various class instances. I am asking if plain Python's dictionaries have the same optimization?…