X-FeedAbuse: http://nntpfeed.proxad.net/abuse.pl feeded by 78.192.65.63 Path: csiph.com!usenet.pasdenom.info!nntpfeed.proxad.net!news.muarf.org!news.roellig-ltd.de!open-news-network.org!border2.nntp.ams1.giganews.com!nntp.giganews.com!newsfeed.xs4all.nl!newsfeed4a.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.002 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'python.': 0.02; 'tutorial': 0.03; 'else:': 0.03; 'beginner': 0.05; 'duplicate': 0.07; 'problem:': 0.07; 'data:': 0.09; 'from:addr:ethan': 0.09; 'from:addr:stoneleaf.us': 0.09; 'from:name:ethan furman': 0.09; 'item,': 0.09; 'message-id:@stoneleaf.us': 0.09; 'rows': 0.09; 'rows,': 0.09; '~ethan~': 0.09; '72k': 0.16; 'before.': 0.16; 'columns': 0.16; 'csv': 0.16; 'dictionary,': 0.16; 'mylist': 0.16; 'wrote:': 0.18; 'written': 0.21; 'help.': 0.21; 'header:User- Agent:1': 0.23; "i've": 0.25; 'compare': 0.26; 'header:In-Reply- To:1': 0.27; 'point': 0.28; 'external': 0.29; 'said,': 0.30; "i'm": 0.30; 'easier': 0.31; 'end,': 0.31; 'file': 0.32; 'there.': 0.32; 'this.': 0.32; 'run': 0.32; 'worked': 0.33; 'lab': 0.33; 'skip:d 20': 0.34; 'could': 0.34; 'hundreds': 0.35; 'add': 0.35; 'really': 0.36; 'in.': 0.36; 'should': 0.36; 'so,': 0.37; 'received:10': 0.37; 'being': 0.38; 'to:addr:python-list': 0.38; 'issue': 0.38; 'pm,': 0.38; 'short': 0.38; 'sure': 0.39; 'to:addr:python.org': 0.39; 'enough': 0.39; 'how': 0.40; 'even': 0.60; 'remove': 0.60; 'received:10.1': 0.61; 'staff': 0.61; 'simple': 0.61; 'you.': 0.62; 'accounts': 0.64; 'great': 0.65; 'life': 0.66; 'here': 0.66; 'dont': 0.67; 'combining': 0.68; 'needed:': 0.84; 'noise': 0.84; 'received:10.1.10': 0.84; 'staff,': 0.84; 'hundred': 0.95 Date: Wed, 13 May 2015 17:06:55 -0700 From: Ethan Furman User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.6.0 MIME-Version: 1.0 To: python-list@python.org Subject: Re: Looking for direction References: <5553DD2E.2080600@pacbell.net> In-Reply-To: <5553DD2E.2080600@pacbell.net> 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: 47 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1431562589 news.xs4all.nl 2871 [2001:888:2000:d::a6]:40629 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:90594 On 05/13/2015 04:24 PM, 20/20 Lab wrote: > I'm a beginner to python. Reading here and there. Written a couple of > short and simple programs to make life easier around the office. > > That being said, I'm not even sure what I need to ask for. I've never > worked with external data before. > > I have a LARGE csv file that I need to process. 110+ columns, 72k > rows. I managed to write enough to reduce it to a few hundred rows, and > the five columns I'm interested in. > > Now is were I have my problem: > > myList = [ [123, "XXX", "Item", "Qty", "Noise"], > [72976, "YYY", "Item", "Qty", "Noise"], > [123, "XXX" "ItemTypo", "Qty", "Noise"] ] > > Basically, I need to check for rows with duplicate accounts row[0] and > staff (row[1]), and if so, remove that row, and add it's Qty to the > original row. I really dont have a clue how to go about this. The > number of rows change based on which run it is, so I couldnt even get > away with using hundreds of compare loops. > > If someone could point me to some documentation on the functions I would > need, or a tutorial it would be a great help. You could try using a dictionary, combining when needed: # untested data = {} for row in all_rows: key = row[0], row[1] if key in data: item, qty, noise = data[key] qty += row[3] else: item, qty, noise = row[2:] data[key] = item, qty, noise for (account, staff), (item, qty, noise) in data.items(): do_stuff_with(account, staff, item, qty, noise) At the end, data should have what you want. It won't, however, be in the same order, so hopefully that's not an issue for you. -- ~Ethan~