Is there any study that shows that typing in Python improves code quality and reduce runtime issues?
Newsflash: not everything good has a study about it
x = []
x.append(1)
x[0] = "new"
x[0] + "oops"
It's optionally typed, but I would credit both "type checks correctly" and "can't assign 'new' over a number" as valid type checker results.Gaussian splashing is pretty awesome.
Unfortunately, without a base level understanding of the entire ecosystem, I stay lost.