Java -> Python? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T22:48:47Z http://stackoverflow.com/feeds/question/49824 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/49824/java-python 12 Java -> Python? jodonnell 2008-09-08T14:36:24Z 2008-09-19T17:16:31Z <p>Besides the dynamic nature of Python (and the syntax), what are some of the major features of the Python language that Java doesn't have, and vice versa?</p> http://stackoverflow.com/questions/49824/java-python/49828#49828 12 Answer by dF for Java -> Python? dF 2008-09-08T14:40:36Z 2008-09-08T14:40:36Z <p>I think this pair of articles by Philip J. Eby does a great job discussing the differences between the two languages (mostly about philosophy/mentality rather than specific language features). </p> <ul> <li><a href="http://dirtsimple.org/2004/12/python-is-not-java.html" rel="nofollow">Python is Not Java</a></li> <li><a href="http://dirtsimple.org/2004/12/java-is-not-python-either.html" rel="nofollow">Java is Not Python, either</a></li> </ul> http://stackoverflow.com/questions/49824/java-python/49837#49837 4 Answer by Dave Webb for Java -> Python? Dave Webb 2008-09-08T14:43:09Z 2008-09-08T14:49:23Z <p>One key difference in Python is <a href="http://weblog.hotales.org/cgi-bin/weblog/nb.cgi/view/python/2005/02/19/1" rel="nofollow">significant whitespace</a>. This puts a lot of people off - me too for a long time - but once you get going it seems natural and makes much more sense than <code>;</code>s everywhere.</p> <p>From a personal perspective, Python has the following benefits over Java:</p> <ul> <li>No <a href="http://en.wikipedia.org/wiki/Exception_handling#Checked_exceptions" rel="nofollow">Checked Exceptions</a></li> <li>Optional Arguments</li> <li>Much less boilerplate and less verbose generally</li> </ul> <p>Other than those, <a href="http://wiki.python.org/moin/LanguageComparisons" rel="nofollow">this page on the Python Wiki</a> is a good place to look with lots of links to interesting articles.</p> http://stackoverflow.com/questions/49824/java-python/49911#49911 2 Answer by Bob Nadler for Java -> Python? Bob Nadler 2008-09-08T15:13:58Z 2008-09-08T15:13:58Z <p>With <a href="http://www.jython.org/Project/" rel="nofollow">Jython</a> you can have both. It's only at Phython 2.2, but still very useful if you need an embedded interpreter that has access to the Java runtime.</p> http://stackoverflow.com/questions/49824/java-python/49953#49953 23 Answer by Eli Courtwright for Java -> Python? Eli Courtwright 2008-09-08T15:35:32Z 2008-09-08T15:35:32Z <ol> <li><p>List comprehensions. I often find myself filtering/mapping lists, and being able to say <code>[line.replace("spam","eggs") for line in open("somefile.txt") if line.startswith("nee")]</code> is really nice.</p></li> <li><p>Functions are first class objects. They can be passed as parameters to other functions, defined inside other function, and have lexical scope. This makes it really easy to say things like <code>people.sort(key=lambda p: p.age)</code> and thus sort a bunch of people on their age without having to define a custom comparator class or something equally verbose.</p></li> <li><p>Everything is an object. Java has basic types which aren't objects, which is why many classes in the standard library define 9 different versions of functions (for boolean, byte, char, double, float, int, long, Object, short). <code>Array.sort</code> is a good example. Autoboxing helps, although it makes things awkward when something turns out to be null.</p></li> <li><p>Properties. Python lets you create classes with read-only fields, lazily-generated fields, as well as fields which are checked upon assignment to make sure they're never 0 or null or whatever you want to guard against, etc.'</p></li> <li><p>Default and keyword arguments. In Java if you want a constructor that can take up to 5 optional arguments, you must define 6 different versions of that constructor. And there's no way at all to say <code>Student(name="Eli", age=25)</code></p></li> <li><p>Functions can only return 1 thing. In Python you have tuple assignment, so you can say <code>spam, eggs = nee()</code> but in Java you'd need to either resort to mutable out parameters or have a custom class with 2 fields and then have two additional lines of code to extract those fields.</p></li> <li><p>Built-in syntax for lists and dictionaries.</p></li> <li><p>Operator Overloading.</p></li> <li><p>Generally better designed libraries. For example, to parse an XML document in Java, you say<br /> <code>Document doc = DocumentBuilderFactory.newInstance().newDocumentBuilder().parse("test.xml");</code><br /> and in Python you say<br /> <code>doc = parse("test.xml")</code></p></li> </ol> <p>Anyway, I could go on and on with further examples, but Python is just overall a much more flexible and expressive language. It's also dynamically typed, which I really like, but which comes with some disadvantages.</p> <p>Java has much better performance than Python and has way better tool support. Sometimes those things matter a lot and Java is the better language than Python for a task; I continue to use Java for some new projects despite liking Python a lot more. But as a language I think Python is superior for most things I find myself needing to accomplish.</p> http://stackoverflow.com/questions/49824/java-python/51512#51512 2 Answer by Mario for Java -> Python? Mario 2008-09-09T10:11:54Z 2008-09-09T10:11:54Z <p>Apart from what Eli Courtwright said:</p> <ul> <li>I find iterators in Python more concise. You can use <em>for i in something</em>, and it works with pretty much everything. Yeah, Java has gotten better since 1.5, but for example you can iterate through a string in python with this same construct.</li> <li>Introspection: In python you can get at runtime information about an object or a module about its symbols, methods, or even its docstrings. You can also instantiate them dynamically. Java has some of this, but usually in Java it takes half a page of code to get an instance of a class, whereas in Python it is about 3 lines. And as far as I know the docstrings thing is not available in Java</li> </ul>