Path: csiph.com!eternal-september.org!feeder.eternal-september.org!border1.nntp.ams1.giganews.com!border2.nntp.ams1.giganews.com!nntp.giganews.com!bcyclone04.am1.xlned.com!bcyclone04.am1.xlned.com!newsfeed.xs4all.nl!newsfeed8.news.xs4all.nl!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.002 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'mrab': 0.05; 'data:': 0.07; 'val': 0.07; 'cc:addr:python-list': 0.09; 'lst': 0.09; 'nameerror:': 0.09; 'snippet': 0.09; 'jan': 0.11; 'wed,': 0.15; '11:59': 0.16; 'handle:': 0.16; 'last)': 0.16; 'line.split()': 0.16; 'nameerror': 0.16; 'wrote:': 0.16; 'nested': 0.18; '>>>': 0.20; '2015': 0.20; 'cc:2**0': 0.20; 'cc:addr:python.org': 0.20; 'aug': 0.20; 'am,': 0.23; 'defined': 0.23; 'insert': 0.23; '(most': 0.24; 'header:In-Reply-To:1': 0.24; 'sort': 0.25; 'define': 0.27; 'message-id:@mail.gmail.com': 0.27; 'key,': 0.29; "i'm": 0.30; 'print': 0.30; 'url:mailman': 0.30; 'code': 0.30; 'url:python': 0.33; 'sat': 0.33; 'traceback': 0.33; 'open': 0.33; 'url:listinfo': 0.34; 'file': 0.34; 'handle': 0.34; 'add': 0.34; 'received:google.com': 0.35; 'fri': 0.35; 'should': 0.36; 'url:org': 0.36; 'subject:: ': 0.37; '12,': 0.37; 'why': 0.39; 'url:mail': 0.40; 'subject:skip:A 10': 0.63; 'hours': 0.65; '>>>>>': 0.66; 'levels': 0.70; "'for'": 0.84; '--->': 0.84; 'dict()': 0.84 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=3k5edCSVpE5D09BJBBrdlszyUhgtrct9HmxYwHGC4W8=; b=W583b809BEIJYIf6Xo+eQcAObghfvg+r1Glb5GcSFh86YMpSNiuYXwiMcRxLJblWUk IOZL7gRYW/PBUni19pD/wDZ4pa5j45OlJm6OFEhsZTAzToPr3d+Vh2o0A3DnQ+P3oxh/ tnIE8PyW3emMPUwLhkNkDQ3uExYEEWqDVZJudPiv5wO50/F0moF6KORigUaP+MGpVp8a cvN1/o6KIYwqjrGObKj9G13PZgMjRoueHseyLVS1sy4/W8ub01XBJZ1G9tcPOzRH5J7W nFDO9p/DEvA3vI+nSqe1lb0DGRdM9ETUk+yvk3YPgjneZcUc1tju8wEob1GM4Tx5irD/ u+Og== MIME-Version: 1.0 X-Received: by 10.152.29.6 with SMTP id f6mr32429999lah.85.1439406337383; Wed, 12 Aug 2015 12:05:37 -0700 (PDT) In-Reply-To: <55CB977D.9080300@mrabarnett.plus.com> References: <0baa3bd5-9f80-4d4e-9367-84e2a32d8c70@googlegroups.com> <55CA92BA.7070905@mrabarnett.plus.com> <103ea014-9bdb-4c37-acd1-cdc64f5f721e@googlegroups.com> <3f132c37-bdb5-4313-9285-69e094392ccf@googlegroups.com> <55CB7823.8010402@mrabarnett.plus.com> <55CB815B.8070800@mrabarnett.plus.com> <5a09701f-06d3-42dd-aa96-59920de76044@googlegroups.com> <55CB977D.9080300@mrabarnett.plus.com> Date: Wed, 12 Aug 2015 12:05:37 -0700 Subject: Re: AttributeError From: Ltc Hotspot To: MRAB Cc: "python-list@python.org" Content-Type: text/plain; charset=UTF-8 X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.20+ 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: 95 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1439406339 news.xs4all.nl 2958 [2001:888:2000:d::a6]:44845 X-Complaints-To: abuse@xs4all.nl X-Received-Bytes: 6688 X-Received-Body-CRC: 2361154652 Xref: csiph.com comp.lang.python:95308 >Have a look at assignment_10_2_v_06.py. What should I look at assignment_10_2_v_06.py.: handle = """From stephen.marquard@uct.ac.za Sat Jan 5 09:14:16 2008 >From louis@media.berkeley.edu Fri Jan 4 18:10:48 2008 """.split("\n") # Snippet file data: mbox-short.txt count = dict() #fname = raw_input("Enter file name: ")# Add Snippet file #handle = open (fname, 'r')# Add Snippet file for line in handle: if line.startswith("From "): time = line.split() # Sort time hours = line.split(":")[5] # Sort hours line = line.rstrip() count[hours] = count.get(hours, 0) + 1 # counter lst = [(val,key) for key,val in count.items()] print key, val On Wed, Aug 12, 2015 at 11:59 AM, MRAB wrote: > On 2015-08-12 19:35, Ltc Hotspot wrote: >> >> Emile >> >> How do I define time in the revised code ? >> >> > Have a look at assignment_10_2_v_06.py. > >> >> >> --------------------------------------------------------------------------- >> Traceback Message reads: >> In [66]: %run assignment_10_2_v_07 >> >> NameError >> Traceback (most recent call last) >> C:\Users\vm\Desktop\apps\docs\Python\week_10\assignment_10_2_v_07.py in >> >> () >> 9 for line in handle: >> 10 if line.startswith("From "): >> ---> 11 for key, val in time.split()[5]: >> 12 for key, val in hours.split(':')[0]: >> 13 count[hours] = count.get(hours, 0) + 1 # counter >> >> NameError: name 'time' is not defined >> >> --------------------------------------------------------------------------- >>>>> >>>>> >> In [67]: print time >> 0 >> >> --------------------------------------------------------------------------- >> >> Revised Code reads: >> handle = """From stephen.marquard@uct.ac.za Sat Jan 5 09:14:16 2008 >>> >>> From louis@media.berkeley.edu Fri Jan 4 18:10:48 2008 >> >> """.split("\n") >> # Snippet file data: mbox-short.txt >> >> count = dict() >> #fname = raw_input("Enter file name: ")# insert snippet file >> #handle = open (fname, 'r')# insert snippet file >> for line in handle: >> if line.startswith("From "): >> for key, val in time.split()[5]: >> for key, val in hours.split(':')[0]: >> count[hours] = count.get(hours, 0) + 1 # counter >> >> lst = [(val,key) for key,val in count.items()] >> lst.sort(reverse=True) >> >> for key, val in lst[:12] : >> print key, val >> >> >> --------------------------------------------------------------------------- >> Regards, >> Hal >> > I'm baffled as to why you now have a nested 'for' loop 3 levels deep! > > -- > https://mail.python.org/mailman/listinfo/python-list