Path: csiph.com!usenet.pasdenom.info!news.albasani.net!newsfeed.freenet.ag!news2.euro.net!newsfeed.xs4all.nl!newsfeed5.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.000 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'python.': 0.04; 'interpreter': 0.05; 'subject:Python': 0.05; 'received:verizon.net': 0.07; 'terry': 0.07; 'python': 0.08; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'am,': 0.12; 'developer': 0.12; 'accesses': 0.16; 'java.': 0.16; 'jython': 0.16; 'reedy': 0.16; 'subject:Java': 0.16; 'version)': 0.16; 'wrote:': 0.18; 'jan': 0.19; 'java': 0.21; 'trying': 0.21; 'header :In-Reply-To:1': 0.22; 'mode': 0.25; 'classes': 0.26; 'code.': 0.26; 'code': 0.26; 'subject:?': 0.31; 'actual': 0.32; 'me?': 0.32; 'header:User-Agent:1': 0.33; 'object': 0.33; 'test': 0.34; 'header:X-Complaints-To:1': 0.34; 'to:addr:python-list': 0.35; 'subject:How': 0.35; 'received:org': 0.36; 'but': 0.37; 'to:addr:python.org': 0.40; 'believe': 0.65; 'capabilities': 0.71; 'experiment': 0.84 X-Injected-Via-Gmane: http://gmane.org/ To: python-list@python.org From: Terry Reedy Subject: Re: How Python empowers Java? Date: Mon, 12 Mar 2012 12:11:32 -0400 References: <90d7a28f-8d7b-4623-88ea-07e0e101b4e3@ni10g2000pbc.googlegroups.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Gmane-NNTP-Posting-Host: pool-74-109-121-73.phlapa.fios.verizon.net User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:8.0) Gecko/20111105 Thunderbird/8.0 In-Reply-To: <90d7a28f-8d7b-4623-88ea-07e0e101b4e3@ni10g2000pbc.googlegroups.com> X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 18 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1331568707 news.xs4all.nl 6844 [2001:888:2000:d::a6]:45433 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:21539 On 3/12/2012 1:39 AM, Ashish Aggarwal wrote: > I am a Java developer but new to Python. > I am trying to assess, as what are new capabilities that Python will > provide me if I use it with Java. > > Guys can you please help me? 1. Jython is a Python interpreter (older version) implemented in Java. It accesses Java classes located on the same machine. I believe it has an interactive mode just like CPython. So you can experiment interactively with the behavior of Java code. You can also write test suites for Java code in Jython. This is one actual use of Jython. 2. Learning a different object model may help you understand Java better. -- Terry Jan Reedy