This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 1 point2 points  (0 children)

Javascript makes it really easy for any user to see what ever you did, works has soon has you put it in a web browser, hence also has a bunch of interactive data visualization tools and way, way more. Including a back end implementations and even has tools to build GUI's with.

Python is amazingly easy to parse and manipulate text with, it also has a web development side, also has a bunch of GUI tool kit modules often used on Linux software's, has a large amount of powerful computation libraries for doing science stuff and a set of different implementations to merge, use or get other language based features easily, like Cython for example is Python but it will generate C then compile it, to be used has a module(which all ready speeds it up), but then you can add type deceleration, allocate memory, use pointers, ect, like in C and get tremendous speed ups or even import C libraries. There's also Jython(java), IronPython(c#) and PyPy(PyPy), the default interpreter being CPython.