What applications is Python optimal for? - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T05:40:30Zhttp://stackoverflow.com/feeds/question/162815http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/162815/what-applications-is-python-optimal-for4What applications is Python optimal for?Alan2008-10-02T15:01:03Z2009-04-22T18:42:11Z
<p>I'm already a professional J2EE developer by day, and Rails developer by night. I'm planning on adding Python to my list of skills. I'm already convinced a language is just a tool, so I'm not interested in a religious war. I agree with the Pragmatic Programmers that learning one language/year is a good thing for your professional development</p>
<p>So, in your considered opinion, what kinds of applications does Python hit the sweet spot? And why? What advantages does it have, and why do these advantages outweigh the costs in adopting Python?</p>
<p>ADD: I also plan on learning a pure functional language like Scheme.</p>
http://stackoverflow.com/questions/162815/what-applications-is-python-optimal-for/162844#16284413Answer by Runevault for What applications is Python optimal for?Runevault2008-10-02T15:04:43Z2008-10-02T15:04:43Z<p>Since you already know Ruby/Rails, I would actually argue to skip Python and go in a direction that will expand your skill set at a more fundamental level. Languages like Erlang (concurrency/message passing), Lisp (more hardcore meta programming then Ruby plus arguably the most powerful form of code is data and data is code), Haskell (more pure functional programming), or the like.</p>
<p>And this is coming from someone who uses python for personal development, but skips Ruby for similar reasons to the above, just coming from the opposite direction you are.</p>
http://stackoverflow.com/questions/162815/what-applications-is-python-optimal-for/162855#1628556Answer by Chris Marasti-Georg for What applications is Python optimal for?Chris Marasti-Georg2008-10-02T15:06:28Z2008-10-02T15:06:28Z<p>Python is great for developing Google AppEngine apps :)</p>
http://stackoverflow.com/questions/162815/what-applications-is-python-optimal-for/162927#1629275Answer by corey goldberg for What applications is Python optimal for?corey goldberg2008-10-02T15:17:15Z2008-10-02T15:17:15Z<p>Python is great for almost everything:</p>
<ul>
<li>GUI</li>
<li>Web</li>
<li>Database</li>
<li>Sysadmin tasks</li>
<li>Munging text</li>
</ul>
<p>Is there a specific type of application you are interested in that someone can explain Python's usefulness for?</p>
http://stackoverflow.com/questions/162815/what-applications-is-python-optimal-for/162963#1629633Answer by swilliams for What applications is Python optimal for?swilliams2008-10-02T15:21:31Z2008-10-02T15:33:10Z<p>What I love about Python is that it is incredibly quick to get going and test stuff out. The command line interpreter lets you easily write out a quick script to see if it works.</p>
<p>I like the lightweight syntax of it. Mandatory whitespace is weird at first, but you get used to it. I don't like all the curly braces and semicolons in more "traditional" languages anymore (and the excessive wordiness of VB.NET is right out).</p>
<p>I <em>love</em> the web frameworks for it. I've been playing with <a href="http://djangoproject.com" rel="nofollow">Django</a> and <a href="http://pylonshq.com" rel="nofollow">Pylons</a> recently, and they're both pretty good. I was able to get some useful web apps up very quickly with them.</p>
<p>Of course, the same could be said (more or less) about Ruby too.</p>
http://stackoverflow.com/questions/162815/what-applications-is-python-optimal-for/163008#1630083Answer by Dan for What applications is Python optimal for?Dan2008-10-02T15:27:04Z2008-10-02T15:27:04Z<p>Honestly, I haven't found anything Python <em>isn't</em> good for in the past couple years of heavy use. It's dynamic and not compiled to native code, so CPU-bound programs will suffer... but on the other hand it is actually <strong>easy</strong> to extend it with native code, and there are numerous very complete C extensions for crypto, math, JSON, etc.</p>
<p>OTOH, you already know Ruby which I think has a similar feature set. Unless you feel that it's lacking in some way, I don't know of any good reason to learn Python other than for your own edification.</p>
http://stackoverflow.com/questions/162815/what-applications-is-python-optimal-for/163016#1630160Answer by sinkingships7 for What applications is Python optimal for?sinkingships72008-10-02T15:28:02Z2008-10-02T15:28:02Z<p>Python is a nice language for devoloping programs where easily readable code is dire, and for most general purpose apps where speed isn't of the utmost importance. It's also a great language for beginners, and supports many paradigms.</p>
http://stackoverflow.com/questions/162815/what-applications-is-python-optimal-for/163017#1630171Answer by Anurag Uniyal for What applications is Python optimal for?Anurag Uniyal2008-10-02T15:28:16Z2008-10-02T15:28:16Z<p>Python is suitable for many areas so I would say pretty much everything except low level drivers etc</p>
<p>Excellent for GUI development using wxPython/PyQT</p>
<p>Excellent for web development , it has lots of easy to use frameworks e.g Django, Turbogears and if you wish you can write your own in no time :)</p>
<p>Excellent for scientific computing, sounds wrong but python can be wrapped around any available C/C++ library and can be used as a glue
It has great numeric library NumPy</p>
<p>Python can also be wrapped around Java using JCC so you can use lucene search</p>
<p>Python works on .Net platform and is available for silverlight so it will owrk on client side too</p>
<p>So in short Python interfaces with most of popular languages/platforms well and has wide range of available libraries.</p>
http://stackoverflow.com/questions/162815/what-applications-is-python-optimal-for/163437#1634370Answer by Jeremy Brown for What applications is Python optimal for?Jeremy Brown2008-10-02T16:59:55Z2008-10-02T16:59:55Z<p>I/O-bound applications for sure. If the interpreter is not your bottleneck, then Python is a superior general purpose language to C++. The only concern would be low-level programming - bit manipulation, memory access, etc. It's possible (ctypes, etc), but unnatural in Python.</p>
<p>The bonus is if you decided to go with cPython and you end up with a hairy CPU-bound algorithm, you could write it in C/C++ and wrap it (Boost.Python!) as a Python extension. </p>
http://stackoverflow.com/questions/162815/what-applications-is-python-optimal-for/163768#1637680Answer by David Eyk for What applications is Python optimal for?David Eyk2008-10-02T18:13:05Z2008-10-02T18:13:05Z<p>There is an active and vibrant amateur game development community working in Python, centered around <a href="http://pygame.org" rel="nofollow">PyGame</a> and <a href="http://pyglet.org" rel="nofollow">Pyglet</a>, with a bi-yearly week-long development competition called <a href="http://pyweek.org" rel="nofollow">Pyweek</a>. The fall competition just finished, so you could make the spring competition a goal for your learning.</p>
http://stackoverflow.com/questions/162815/what-applications-is-python-optimal-for/164289#1642890Answer by Steve Losh for What applications is Python optimal for?Steve Losh2008-10-02T20:01:37Z2008-10-02T20:01:37Z<p>Anything where you can use list comprehensions in Python. This is the feature I miss more than any other when I'm programming in Java, etc.</p>
http://stackoverflow.com/questions/162815/what-applications-is-python-optimal-for/165460#1654601Answer by Ian for What applications is Python optimal for?Ian2008-10-03T02:43:05Z2008-10-03T02:43:05Z<p>In response to your "ADD: I also plan on learning a pure functional language like Scheme."</p>
<p>Scheme is a great first functional programming language to learn, and it really gives you a new outlook and appreciation for recursion. A great fun to read book to pickup for learning Scheme is <a href="http://rads.stackoverflow.com/amzn/click/0262560992" rel="nofollow">The Little Schemer</a>.</p>
http://stackoverflow.com/questions/162815/what-applications-is-python-optimal-for/172036#1720360Answer by jlouis for What applications is Python optimal for?jlouis2008-10-05T14:06:45Z2008-10-05T14:06:45Z<p>Python is dynamically typed and that makes it perfect for problems where you only have a vague idea of the goal. You can slowly begin getting the ball rolling and you can see the direction of the ball early on. Then you can slowly prod it a bit at a time until it reaches the goal.</p>
<p>In general, a system like J2EE does not support this kind of development to the same extent. You need a more specific plan up front unless you want to redefine bug chunks of the code completely.</p>
http://stackoverflow.com/questions/162815/what-applications-is-python-optimal-for/778604#7786040Answer by savannah for What applications is Python optimal for?savannah2009-04-22T18:42:11Z2009-04-22T18:42:11Z<p>Maya is starting to use python more and more, so tool scripting could be a good field to get into.</p>