How can I use Python for large scale development?

后端 未结 8 1191
梦谈多话
梦谈多话 2021-01-29 21:33

I would be interested to learn about large scale development in Python and especially in how do you maintain a large code base?

  • When you make incompatibility ch

8条回答
  •  迷失自我
    2021-01-29 22:18

    my 0.10 EUR:

    i have several python application in 'production'-state. our company use java, c++ and python. we develop with the eclipse ide (pydev for python)

    unittests are the key-solution for the problem. (also for c++ and java)

    the less secure world of "dynamic-typing" will make you less careless about your code quality

    BY THE WAY:

    large scale development doesn't mean, that you use one single language!

    large scale development often uses a handful of languages specific to the problem.

    so i agree to the-hammer-problem :-)


    PS: static-typing & python

提交回复
热议问题