Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!news2.arglkargh.de!news.mixmin.net!feeds.phibee-telecom.net!newsfeed.xs4all.nl!newsfeed1.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.008 X-Spam-Evidence: '*H*': 0.98; '*S*': 0.00; 'interpreter': 0.05; 'class,': 0.07; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'subject:Help': 0.11; 'received:80.91.229.3': 0.16; 'received:plane.gmane.org': 0.16; 'subject:show': 0.16; 'wrote:': 0.18; 'header:User-Agent:1': 0.23; 'class.': 0.26; 'header:X -Complaints-To:1': 0.27; 'subject:please': 0.30; 'page.': 0.31; '>>>>': 0.31; 'subject:next': 0.31; 'yourself.': 0.31; 'url:python': 0.33; 'subject:the': 0.34; 'could': 0.34; 'there': 0.35; 'method': 0.36; 'charset:us-ascii': 0.36; 'subject:?': 0.36; 'url:org': 0.36; 'url:library': 0.38; 'to:addr:python-list': 0.38; 'to:addr:python.org': 0.39; 'received:org': 0.40; 'teach': 0.65; 'william': 0.81; 'angel': 0.91 X-Injected-Via-Gmane: http://gmane.org/ To: python-list@python.org From: Dave Angel Subject: Re: Help please, why doesn't it show the next input? Date: Wed, 11 Sep 2013 20:32:17 +0000 (UTC) References: <2dba1d63-16f0-412d-b650-0cdc27c3b57e@googlegroups.com> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Gmane-NNTP-Posting-Host: 174.32.174.36 User-Agent: XPN/1.2.6 (Street Spirit ; Linux) 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: 22 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1378931564 news.xs4all.nl 15897 [2001:888:2000:d::a6]:37735 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:53992 On 11/9/2013 15:31, William Bryant wrote: > @Dave Angel > > What is .lower() ? It is a method on the str class. You could teach yourself. At the interpreter prompt, type >>>> help("test response".lower) Or on the web: http://docs.python.org/2/library/stdtypes.html#str.lower There are lots of other interesting methods in the str class, listed on that section of that page. -- DaveA