Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!newsfeed.freenet.ag!news2.euro.net!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.022 X-Spam-Evidence: '*H*': 0.96; '*S*': 0.00; 'else:': 0.03; 'output': 0.04; 'val': 0.07; 'cc:addr:python-list': 0.10; 'def': 0.10; 'cc:name:python list': 0.16; 'wrote:': 0.17; 'keyerror:': 0.22; 'cc:2**0': 0.23; 'this:': 0.23; "haven't": 0.23; 'cc:addr:python.org': 0.25; 'header:In-Reply-To:1': 0.25; 'message-id:@mail.gmail.com': 0.27; 'error': 0.30; 'file': 0.32; 'entry': 0.33; "can't": 0.34; 'received:google.com': 0.34; 'received:209.85': 0.35; 'received:209': 0.37; 'data': 0.37; 'subject:: ': 0.38; 'skip:" 10': 0.40; '2013': 0.84; 'dict.': 0.84; 'oscar': 0.84; 'subject:Increase': 0.84; 'subject:value': 0.84 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:cc:content-type; bh=evgFtJEI9SQhG/gwBq6/BwUDyRbVy02EorM0BEpBsBI=; b=Y1uQIBvv/WYmHPLiK0XZWagjlOPFcORZEk5OwY+zrly4mj3GANacJokCFozzgJmWnV 8vwiouKYH0mhhEJ2KUf03LsHyAy5moFV+ymRKkub/wdsy6AOk7TUxHG7dl2+djZUJW6J zET9GvTei1JkPyZvqvtlST4s5IserCv3VRHmjarQ0SwavXL+FDf6DUaT9oaUH6aH5sAS 02Azu5Pb9ErniJyAfH4t3YnPpgRgmMvU1gggt6Kvmc+G0VWbOtAX3wtk5yKFUIAafTla ikoAikjlvycyjYz3dkYYZhzEocJ+uJ9EClMoZ45ZnQFSH5zciqnIXh8KWjy61d3tem8l Ad4Q== MIME-Version: 1.0 X-Received: by 10.112.14.6 with SMTP id l6mr486888lbc.81.1358935945326; Wed, 23 Jan 2013 02:12:25 -0800 (PST) In-Reply-To: <32d316a1-8551-4cb2-871f-b0a653c7d2f6@u7g2000yqg.googlegroups.com> References: <32d316a1-8551-4cb2-871f-b0a653c7d2f6@u7g2000yqg.googlegroups.com> Date: Wed, 23 Jan 2013 10:12:25 +0000 Subject: Re: Increase value in hash table From: Oscar Benjamin To: moonhkt Content-Type: text/plain; charset=ISO-8859-1 Cc: Python List 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: 44 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1358935947 news.xs4all.nl 6963 [2001:888:2000:d::a6]:55581 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:37440 On 23 January 2013 07:26, moonhkt wrote: > Hi Al > > I have Data file have below > > Data file > V1 > V2 > V3 > V4 > V4 > V3 > > How to using count number of data ? > > Output > V1 = 1 > V2 = 1 > V3 =2 > V4 = 2 > > > > # Global Veriable > printque = {} > in def have below > > printque[val] = printque[val] + 1 > > I have below error > File "xprintlogchk.py", line 78, in chklog > printque[val] = printque[val] + 1 > KeyError: 'nan' You can't retrieve the value of printque[val] if you haven't yet added an entry with the key val to the dict. Try this: if val not in printque: printque[val] = 1 else: printque[val] = printque[val] + 1 Oscar