Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

6
  • 12
    Strict type checking and static type checking aren't the same thing. Python is dynamically typed, but is more strict than C. The advantage of static type checking isn't strictness per se but that types are checked at build time, not run time. I've dealt with many C/C++ issues in my career because of implicit casting. Commented Aug 24, 2013 at 17:24
  • 6
    There's probably something to be said about lifecycle: software that starts in your first category can evolve into the others, "dragging" the language with it. Commented Aug 24, 2013 at 17:24
  • 11
    The only thing elegant about javascript is it runs in most browsers. Commented Jun 30, 2014 at 20:26
  • 1
    @StevenBurnap: I couldn't agree more regarding the difference between static and strict. Java is another point on the spectrum, being static and too strict. Developers often berate static typing using Java as example, but much of that criticism should actually be directed at Java's overly-strict compiler, not static typing in general. Just look at Scala on the same JVM, which is statically typed, but has much less verbose code due to the fantastic compiler's type-inferencing abilities. Commented Mar 25, 2015 at 10:17
  • 2
    "Python is successfully used for large systems" - what is the definition of "success" here? That it mostly runs and produces some result? Is the amount of testing and workforce required included? What about maintainability? Commented Mar 25, 2015 at 13:33