Path: csiph.com!eternal-september.org!feeder.eternal-september.org!border1.nntp.ams1.giganews.com!nntp.giganews.com!newsfeed.xs4all.nl!newsfeed7.news.xs4all.nl!newsgate.cistron.nl!newsgate.news.xs4all.nl!194.109.133.91.MISMATCH!newsfeed.xs4all.nl!newsfeed8.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.005 X-Spam-Evidence: '*H*': 0.99; '*S*': 0.00; 'data:': 0.07; 'f.close()': 0.07; 'filename': 0.07; 'nameerror:': 0.09; 'snippet': 0.09; 'jan': 0.11; 'from:addr:mrabarnett.plus.com': 0.16; 'from:addr:python': 0.16; 'from:name:mrab': 0.16; 'message- id:@mrabarnett.plus.com': 0.16; 'received:192.168.1.4': 0.16; 'received:84.93': 0.16; 'received:84.93.230': 0.16; 'wrote:': 0.16; 'to:name:python-list@python.org': 0.20; 'defined': 0.23; 'header:In-Reply-To:1': 0.24; 'header:User-Agent:1': 0.26; 'figure': 0.27; 'define': 0.27; 'print': 0.30; 'url:mailman': 0.30; 'code': 0.30; 'received:84': 0.32; 'point': 0.33; 'url:python': 0.33; 'sat': 0.33; 'traceback': 0.33; "i'll": 0.33; 'url:listinfo': 0.34; 'file': 0.34; 'handle': 0.34; 'fri': 0.35; 'url:org': 0.36; 'skip:{ 10': 0.36; 'to:addr:python-list': 0.36; 'subject:: ': 0.37; 'received:192': 0.39; 'url:mail': 0.40; 'to:addr:python.org': 0.40; 'subject:skip:A 10': 0.63; '>from': 0.76; '--->': 0.84; 'yourself...': 0.84 X-CM-Score: 0.00 X-CNFS-Analysis: v=2.1 cv=MbeRwMLf c=1 sm=1 tr=0 a=0nF1XD0wxitMEM03M9B4ZQ==:117 a=0nF1XD0wxitMEM03M9B4ZQ==:17 a=0Bzu9jTXAAAA:8 a=EBOSESyhAAAA:8 a=UWU4mQFGWXkA:10 a=IkcTkHD0fZMA:10 a=8AHkEIZyAAAA:8 a=X8rMAUp93AEoeMqU8XEA:9 a=QEXdDO2ut3YA:10 X-AUTH: mrabarnett@:2500 Subject: Re: AttributeError 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> <55CBCA4D.1010706@mrabarnett.plus.com> <55CBD3DE.2080407@mrabarnett.plus.com> To: "python-list@python.org" From: MRAB Date: Thu, 13 Aug 2015 00:56:42 +0100 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:38.0) Gecko/20100101 Thunderbird/38.1.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit 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: 46 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1439423806 news.xs4all.nl 2840 [2001:888:2000:d::a6]:41449 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:95329 On 2015-08-13 00:46, Ltc Hotspot wrote: > >> How do I define the file name in order to remove the traceback? > >> > > At this point I think I'll just let you figure that out for yourself... > > > > -- > > https://mail.python.org/mailman/listinfo/python-list > > MRAB, > > How do I define X? > ------------------------------------------------------------------------------------- > Traceback reads: > > 10 f = open(filename,'r') > 11 for l in f: > ---> 12 h = int(l.split()[X].split(':')[Y]) > 13 c[h] = c[h] + 1 > 14 f.close() > > NameError: name 'X' is not defined > ------------------------------------------------------------------------------------- > 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 > > filename = raw_input("Enter file:") > if len(filename) < 1 : filename = "mbox-short.txt" > > > c = [0 for i in range(24)] > f = open(filename,'r') > for l in f: > h = int(l.split()[X].split(':')[Y]) > c[h] = c[h] + 1 > f.close() > for i in range(24): > print '{:02d} {}'.format(i, c[i]) > Print out the result of "l.split()" and figure out the value of X that will give you the part you want. Then, print out the result of the ".split(':')" part and figure out the value of Y that will give you the part you want.