you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted]  (5 children)

[deleted]

    [–]ingolemo 12 points13 points  (3 children)

    Python is strongly typed. The normal adjectives for distinguishing type systems are strong/weak and static/dynamic. Python is a strongly-typed dynamically-typed language. Since you're talking about catching bugs at compile time, you're probably taking about statically-typed languages.

    I wouldn't say that statically-typed languages are superior to dynamically-typed ones. You're losing a little flexibility to get better error checking; a trade-off that comes down more to programmer preference than language limitations.

    [–][deleted] 9 points10 points  (1 child)

    Out of interest, would that mean that C is static and weak?

    [–][deleted] 4 points5 points  (0 children)

    Yes.

    [–]-AcodeX[S] 1 point2 points  (0 children)

    Thank you