Uses for Dynamic Languages

前端 未结 13 1972
刺人心
刺人心 2021-01-02 11:14

My primary language right now is D, and I\'m in the process of learning Python because it\'s required for a course I\'m taking. While I understand why dynamic languages wou

13条回答
  •  长发绾君心
    2021-01-02 11:18

    I actually wrote a blog post on this: linky. But that post basically can be summed up like this:

    You'd be surprised at how much of a load off your mind it is to not have to name at compile time what type your variable is. Thus, python tends to be a very productive language.

    On the other hand, even with good unit tests, you'd also be surprised at what kinds of stupid mistakes you're allowing yourself to make.

提交回复
热议问题