Path: csiph.com!usenet.pasdenom.info!aioe.org!news.stack.nl!newsfeed.xs4all.nl!newsfeed3.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.019 X-Spam-Evidence: '*H*': 0.96; '*S*': 0.00; 'sys': 0.07; 'exception,': 0.09; 'posting.': 0.09; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'subject:Help': 0.11; 'python': 0.11; 'question.': 0.14; 'received:80.91.229.3': 0.16; 'received:plane.gmane.org': 0.16; 'symbols': 0.16; 'text?': 0.16; 'traceback.': 0.16; 'why,': 0.16; 'wrote:': 0.18; 'import': 0.22; 'header:User-Agent:1': 0.23; 'first,': 0.26; 'code:': 0.26; 'gets': 0.27; 'header:X-Complaints-To:1': 0.27; 'idea': 0.28; 'character': 0.29; 'robert': 0.30; 'lines': 0.31; 'reply.': 0.31; 'apparently': 0.31; 'figure': 0.32; 'front': 0.32; 'supposed': 0.32; 'run': 0.32; 'another': 0.32; 'running': 0.33; 'beginning': 0.33; 'bugs': 0.33; 'subject:with': 0.35; 'something': 0.35; 'add': 0.35; 'charset:us-ascii': 0.36; 'two': 0.37; 'level': 0.37; 'question,': 0.38; 'to:addr:python-list': 0.38; 'to:addr:python.org': 0.39; 'received:org': 0.40; 'skip:u 10': 0.60; 'read': 0.60; 'blank': 0.60; 'new': 0.61; 'first': 0.61; 'back': 0.62; 'name': 0.63; 'such': 0.63; 'saw': 0.77; '"not': 0.84; 'working,': 0.84; 'concluded': 0.91; 'thoroughly': 0.91; 'received:108': 0.93 X-Injected-Via-Gmane: http://gmane.org/ To: python-list@python.org From: Dave Angel Subject: Re: Help with guessing game :D Date: Tue, 29 Oct 2013 19:09:01 +0000 (UTC) References: <37245746-51cc-4040-9493-1921369023fb@googlegroups.com> <6308b97e-4d6d-4632-bf1a-b1400341896b@googlegroups.com> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Gmane-NNTP-Posting-Host: pool-108-32-186-211.hstntx.dsl-w.verizon.net 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: 36 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1383073771 news.xs4all.nl 15941 [2001:888:2000:d::a6]:45377 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:57959 On 29/10/2013 14:05, Robert Gonda wrote: & >> Back to question, name is also not working, I currently have python 3.3.2 and the only to get that work is the write raw_input, I have no idea why, did i do soemthing wrong? Why did you add those two >> symbols in front of your new text? Each such symbol is supposed to indicate that another level of quoting is occuring. So when I saw your message, I first concluded that you sent a blank reply. (I also added another character in front of it, so you'd see it. Apparently googlegroups messes up your view of things in order to cover up its bugs in posting. As for your question. Yes, you did something wrong. You thoroughly underspecified the phrase "not working." When you run a program and it gets an exception, read the whole traceback. And when you want help here, copy the WHOLE TRACEBACk. If raw_input() is working without an exception, then you are NOT running Python3.x. Figure that out first, perhaps by sticking these two lines at the beginning of your code: import sys print(sys.version) -- DaveA