Path: csiph.com!usenet.pasdenom.info!news.redatomik.org!newsfeed.xs4all.nl!newsfeed4.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; 'else:': 0.03; 'duplicate': 0.07; 'intermediate': 0.07; 'problem:': 0.07; 'rows': 0.09; 'rows,': 0.09; 'try:': 0.09; 'cc:addr:python-list': 0.11; '-tkc': 0.16; '72k': 0.16; 'before.': 0.16; 'columns': 0.16; 'csv': 0.16; 'dict': 0.16; 'dictionaries': 0.16; 'does,': 0.16; 'exception:': 0.16; 'from:addr:python.list': 0.16; 'from:addr:tim.thechases.com': 0.16; 'from:name:tim chase': 0.16; 'mylist': 0.16; 'stumbled': 0.16; 'tuple.': 0.16; 'wrote:': 0.18; 'bit': 0.19; 'module': 0.19; 'file,': 0.19; '>>>': 0.22; 'coding': 0.22; 'cc:addr:python.org': 0.22; 'exists': 0.24; 'initial': 0.24; '(or': 0.24; 'cc:2**0': 0.24; 'cc:no real name:2**0': 0.24; 'header:In-Reply-To:1': 0.27; "i'm": 0.30; 'work.': 0.31; 'code': 0.31; 'about.': 0.31; "d'aprano": 0.31; 'steven': 0.31; 'yesterday': 0.31; 'file': 0.32; 'this.': 0.32; 'lab': 0.33; 'reader': 0.33; 'except': 0.35; 'skip:s 30': 0.35; 'something': 0.35; 'add': 0.35; 'really': 0.36; 'combination': 0.36; 'data,': 0.36; 'in.': 0.36; 'processed': 0.36; 'charset:us-ascii': 0.36; "i'll": 0.36; 'should': 0.36; 'wrong': 0.37; 'so,': 0.37; 'list': 0.37; 'received:10': 0.37; 'thank': 0.38; 'lists.': 0.38; 'pm,': 0.38; 'that,': 0.38; 'enough': 0.39; 'skip:p 20': 0.39; 'how': 0.40; 'remove': 0.60; 'staff': 0.61; "you're": 0.61; 'further': 0.61; 'more': 0.64; 'accounts': 0.64; 'account': 0.65; 'hours': 0.66; 'reply': 0.66; 'dont': 0.67; 'study': 0.69; 'clearer': 0.84; 'approached': 0.93; 'hundred': 0.95 X-Sender-Id: wwwh|x-authuser|tim@thechases.com X-Sender-Id: wwwh|x-authuser|tim@thechases.com X-MC-Relay: Neutral X-MailChannels-SenderId: wwwh|x-authuser|tim@thechases.com X-MailChannels-Auth-Id: wwwh X-MC-Loop-Signature: 1431623850256:4248566177 X-MC-Ingress-Time: 1431623850256 Date: Thu, 14 May 2015 12:17:59 -0500 From: Tim Chase To: 20/20 Lab Cc: python-list@python.org Subject: Re: Looking for direction In-Reply-To: <5554D40C.9090505@pacbell.net> References: <5553f8fe$0$13012$c3e8da3$5496439d@news.astraweb.com> <5554D40C.9090505@pacbell.net> X-Mailer: Claws Mail 3.8.1 (GTK+ 2.24.10; x86_64-pc-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-AuthUser: tim@thechases.com 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: 80 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1431623856 news.xs4all.nl 2849 [2001:888:2000:d::a6]:58461 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:90618 On 2015-05-14 09:57, 20/20 Lab wrote: > On 05/13/2015 06:23 PM, Steven D'Aprano wrote: >>> 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. > I actually stumbled across the csv module after coding enough to > make a list of lists. So that is more the reason I approached the > list; Nothing like spending hours (or days) coding something that > already exists and just dont know about. >>> 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. >> >> processed = {} # hold the processed data in a dict >> >> for row in myList: >> account, staff = row[0:2] >> key = (account, staff) # Put them in a tuple. >> if key in processed: >> # We've already seen this combination. >> processed[key][3] += row[3] # Add the quantities. >> else: >> # Never seen this combination before. >> processed[key] = row >> >> newlist = list(processed.values()) >> > It does, immensely. I'll make this work. Thank you again for the > link from yesterday and apologies for hitting the wrong reply > button. I'll have to study more on the usage and implementations > of dictionaries and tuples. In processing the initial CSV file, I suspect that using a csv.DictReader would make the code a bit cleaner. Additionally, as you're processing through the initial file, unless you need the intermediate data, you should be able to do it in one pass. Something like HEADER_ACCOUNT = "account" HEADER_STAFF = "staff" HEADER_QTY = "Qty" processed = {} with open("data.csv") as f: reader = csv.DictReader(f) for row in reader: if should_process_row(row): account = row[HEADER_ACCOUNT] staff = row[HEADER_STAFF] qty = row[HEADER_QTY] try: row[HEADER_QTY] = qty = int(qty) except Exception: # not a numeric quantity? continue # from Steven's code key = (account, staff) if key in processed: processed[key][HEADER_QTY] += qty else: processed[key][HEADER_QTY] = row so_something_with(processed.values()) I find that using names is a lot clearer than using arbitrary indexing. Barring that, using indexes-as-constants still would add further clarity. -tkc .