vote up 2 vote down star
1

I've started learning IronPython a while back and I really like programming in it. The only problem I have is explaining a fellow developer why should he take the time and learn IronPython.

I'm well aware that learning a new language and new programming paradigm is a good practice but I need more "down to earth" reasons why (and when) should a developer use dynamic language in his work.

flag

1  
if it walks like a duck... – Jason Sep 2 at 6:59
3  
Isn't "I like programming in it" a reasonable reason? Having fun doing your work is a good way of increasing your productivity. – Joachim Sauer Sep 2 at 8:33

8 Answers

vote up 2 vote down check

Another excellent reason to use a dynamic language such as Python is that development time is reduced by a factor 2 to 10, which is huge! References: Prechelt, ยง 8.1 and Ousterhout.

link|flag
I'm bumping this one up because I think the Ousterhout paper does a good job of explaining the advantages of dynamic languages. – Bryan Oakley Sep 4 at 10:49
vote up 1 vote down

Because it is fun and it will give you a more nuanced view on the merits of statically typed languages.

link|flag
vote up 3 vote down

With dynamic languages, it's all about rapid development and the flexibility that dynamic languages provide. This has been discussed countless times before so I would do a little more research on this. For instance, check out this previous statckoverflow discussion on static v. typed languages.

link|flag
vote up 0 vote down

You should use a dynamic language when you won't be the one having to maintain it later.

50% jest 50% serious.

link|flag
2  
@Tom - 50%?!? Python applications are easily more maintainable than C# and Java applications, at least in my experience. – Vinay Sajip Sep 2 at 7:14
It's easy to code Java in Python though. That's the python way of shooting yourself in the foot. – bayer Sep 2 at 7:43
@usuallyuseless: True, but that says more about the developer than the language. – Vinay Sajip Sep 2 at 7:53
vote up 2 vote down

I've found that using Python, Jython and IronPython help me get my work done more quickly (and enjoyably) and reduce the potential stress of having to meet tight development deadlines. Isn't that a down-to-earth, good enough reason?

As to when: corporate guidelines will not normally allow use of IronPython for applications, so I use it for proof-of-concept work, test data generation, unit testing ...

link|flag
vote up 1 vote down

Python (for example) is very good for prototyping a future application.

link|flag
1  
Why just prototype? Python is perfect for real applications. – hasen j Sep 2 at 8:32
1  
Yes and no. If performance is a requirement (and it usually is for the real applications), it's better to write it in other language. (of course, you can use ctypes.. but that's not writing in pyton... is python plus c). Python is good when you need speed of development. And it is relatively easy to translate from python to C/C++ etc. – Ionut Anghelcovici Sep 2 at 8:49
1  
And try maintaining a couple 10k lines of dynamic code... Been there, done that, and it's not fun. – erikkallen Sep 3 at 11:27
1  
10k lines of any code is equally hard (or easy) to maintain IMO. I've maintained that much dynamic code often in my life and it's no problem at all. YMMV, but I don't think its an inherent limitation of dynamic languages per se. – Bryan Oakley Sep 3 at 11:46
2  
It's been my experience that performance is rarely a problem, and very rarely one that would be best solved by switching languages. In almost every case I've seen, it was an algorithm problem, not a language one. Something that's O(2^n) working on huge data sets is going to be slow regardless of the language. – RHSeeger Sep 3 at 13:54
show 3 more comments
vote up 1 vote down

Are you literally talking about dynamically typed languages exclusively or do you just mean higher level languages than the one you normally use? I'm not trying to be clever but "Dynamic Language" gets thrown around so much that I'm not sure anyone pays attention to what it means (I think it gets used as a catch-all for any language that's not in the C family or Java), but there are options like Boo, Scala, F#, Haskell and OCaml that are statically typed but offer similar benefits in terms of features and productivity as Ruby, Python, etc.

What do you normally program in? It's a lot easier to give advice if we have an idea of what you do and what tools you use.

In any case the short answer to your questions is likely to be "More features (preferably functional programming style features), interactive development environment, more productivity, more work done with less code."

link|flag
Haskell and crew most definitely do not give the same benefits (as far as features and productivity) as the Ruby/Tcl/Python crew. They certainly provide some of them (not having to specify types in most cases being a good example)... but the truly dynamic languages allow you to do some fairly amazing things by changing language aspects interactively. – RHSeeger Sep 3 at 13:58
@myself - That came out reading horribly. What I meant to say is that Ruby/Tcl/etc allow you to do some truly interesting things that Haskell/etc can't. – RHSeeger Sep 3 at 13:59
vote up 1 vote down

In my experience, dynamic languages fit a more agile development process a little better than the more statically typed languages. It takes a little bit more up-front design to design a class system in say C#. That's not to say that dynamic languages don't involve any up-front design or that up-front design is always a bad thing of course.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.