Path: csiph.com!newsfeed.hal-mli.net!feeder3.hal-mli.net!newsfeed.hal-mli.net!feeder1.hal-mli.net!news.stack.nl!newsfeed.xs4all.nl!newsfeed2.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!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.015 X-Spam-Evidence: '*H*': 0.97; '*S*': 0.00; 'subject:Python': 0.05; 'none)': 0.07; 'interpreter,': 0.09; 'result.': 0.15; '(3,': 0.16; 'expression,': 0.16; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'wrote:': 0.17; 'jan': 0.18; '>>>': 0.18; 'otherwise,': 0.20; 'header:In-Reply-To:1': 0.25; 'am,': 0.27; 'message-id:@mail.gmail.com': 0.27; 'fri,': 0.30; 'to:addr:python- list': 0.33; 'agree': 0.34; 'received:google.com': 0.34; 'received:209.85.220': 0.35; 'received:209.85': 0.35; 'but': 0.36; 'received:209': 0.37; 'subject:: ': 0.38; 'to:addr:python.org': 0.39; 'subject:, ': 0.61; 'subject:The': 0.71; '2013': 0.84; 'rusi': 0.91 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:in-reply-to:references:date:message-id :subject:from:to:content-type; bh=mYBuh+x5fOSA0jx3t20QEudf6uridVDkfOmgrCwedII=; b=NeDRjI8t8Qq/+7aqFKNJKPPiZOPt8kF9IJeqrLNLaKGQFojnijFvr9K5ClDlGCCRd5 0E/4bZFdij5WTC+kYJd6ejXfwpTydnWxeuPzRKUU/N0PklMAWEv+PpLHjg8yRU0vtBoq BjygtEGcUgBk3YYMCGbbwiE0wH1e2ZTaQ4pT1kvEDp0q+ddZo4SRsMYyt8psCEq4uiHO hN+WvvmdKduYakleY74NvOcTkSTo4bJN+LL59UIqO/nsTb7kYiGyyAcQVfn9EWmQZXp2 ZcPxkqtD7GsjXNQIBdi+UlLtVoOPdwUvnNhMZ6LulnXukRmzF6C/OCwK26AQXRit37dv j23g== MIME-Version: 1.0 X-Received: by 10.220.156.10 with SMTP id u10mr2432693vcw.28.1359043276507; Thu, 24 Jan 2013 08:01:16 -0800 (PST) In-Reply-To: <82c4ecc1-3d18-47ba-ad2d-f238bfaf878e@y3g2000pbq.googlegroups.com> References: <82c4ecc1-3d18-47ba-ad2d-f238bfaf878e@y3g2000pbq.googlegroups.com> Date: Fri, 25 Jan 2013 03:01:16 +1100 Subject: Re: The best, friendly and easy use Python Editor. From: Chris Angelico To: python-list@python.org Content-Type: text/plain; charset=ISO-8859-1 X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 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: 21 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1359043278 news.xs4all.nl 6907 [2001:888:2000:d::a6]:36946 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:37605 On Fri, Jan 25, 2013 at 2:54 AM, rusi wrote: > - last expression with _ (underscore) Small terminology quibble: That's not last expression, but last non-None result. >>> 1+2 3 >>> _ 3 >>> _,None (3, None) >>> _ (3, None) >>> _[1] >>> _ (3, None) Otherwise, agree totally. Get to know the interactive interpreter, and keep it handy. ChrisA