Representing Lists as Ints in Python
Overview Python’s default ints, unlike in C, Rust or Go, are of arbitrary size.1,2 What that means is there’s no absolute maximum value your ints can store. They’ll grow as long a… (more…)
Read more »
Making your own programming language with Python Why make your own language? When you write your own programming language, you control the entire programmer experience.
This allows you to shape exact how each aspect of your language works and how a devel… Read more