Comment by lou1306

Comment by lou1306 4 days ago

1 reply

`printf`/`str.format` are also prone to nasty failures: if you forget a variable (e.g., `str.format("{} {} {}", 0, 1)`), you only find out when you crash with an IndexError at runtime.

zahlman 3 days ago

I would expect that linters can pick up this sort of thing pretty easily.