a blog title

TIL: You can use underscores to make numeric literals more readable in Python.

That is,

CONST = 123_456_789.987_654_321

is equivalent to

CONST = 123456789.987654321

I totally missed that. Maybe someone else out there did too.

More at PEP 515.
Nice for bytes and hexadecimal too.

#python