Path: csiph.com!usenet.pasdenom.info!aioe.org!rt.uk.eu.org!nntp-feed.chiark.greenend.org.uk!ewrotcd!news.nosignal.org!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; 'algorithm': 0.03; 'float': 0.05; '%s"': 0.07; 'function,': 0.07; 'try:': 0.07; 'valueerror:': 0.07; 'python': 0.09; '754': 0.09; 'callable': 0.09; 'typeerror:': 0.09; 'advance': 0.10; 'def': 0.10; 'dec': 0.15; '"%s': 0.16; 'advice:': 0.16; 'comma': 0.16; 'count,': 0.16; 'csv': 0.16; 'found"': 0.16; 'indexerror:': 0.16; 'row': 0.16; 'subject:compare': 0.16; 'wed,': 0.16; 'wrote:': 0.17; 'errors': 0.23; 'split': 0.23; 'seems': 0.23; 'pass': 0.25; 'least': 0.25; 'header:In-Reply-To:1': 0.25; 'header:User-Agent:1': 0.26; 'replace': 0.27; 'run': 0.28; '+0100,': 0.29; "i'm": 0.29; 'function': 0.30; 'file': 0.32; 'print': 0.32; 'goes': 0.33; 'function.': 0.33; 'problem': 0.33; 'to:addr:python-list': 0.33; 'another': 0.33; 'skip:d 20': 0.34; "can't": 0.34; 'thanks': 0.34; 'list': 0.35; 'clear': 0.35; 'next': 0.35; 'received:org': 0.36; 'except': 0.36; 'skip:u 20': 0.36; 'but': 0.36; 'compare': 0.36; 'stock': 0.36; "didn't": 0.36; 'charset:us-ascii': 0.36; 'does': 0.37; 'subject:: ': 0.38; 'several': 0.39; 'to:addr:python.org': 0.39; 'where': 0.40; 'your': 0.60; 'content-disposition:inline': 0.60; 'first': 0.61; 'prices': 0.62; 'ever': 0.63; 'more': 0.63; 'here': 0.65; 'become': 0.65; 'total': 0.65; 'price': 0.66; 'deeply': 0.66; 'finally': 0.66; 'products': 0.70; 'products.': 0.74; 'obvious.': 0.84; 'try,': 0.84; 'mistake': 0.91; 'from.': 0.93 Date: Thu, 6 Dec 2012 01:19:58 +0100 From: Bruno Dupuis To: python-list@python.org Subject: Re: Confused compare function :) References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) 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: 81 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1354753193 news.xs4all.nl 6902 [2001:888:2000:d::a6]:44214 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:34347 On Wed, Dec 05, 2012 at 11:50:49PM +0100, Anatoli Hristov wrote: > I'm confused again with a compare update function. The problem is that > my function does not work at all and I don't get it where it comes > from. > > in my DB I have total of 754 products. when I run the function is says: > Total updated: 754 > Total not found with in the distributor: 747 > I just don't get it, can you find my mistake ? > > Thanks in advance > > def Change_price(): > total = 0 > tnf = 0 > for row in DB: # DB is mySQL DB, logically I get out 1 SKU and I > compare it with next loop > isku = row["sku"] > isku = isku.lower() > iprice = row["price"] > iprice = int(iprice) > found = 0 > try: > for x in PRICELIST:# here is my next loop in a CSV file > which is allready in a list PRICELIST > try: > dprice = x[6] > dprice = dprice.replace(",",".") # As in the > PRICELIST the prices are with commas I replace the comma as python > request it > dprice = float(dprice) > newprice = round(dprice)*1.10 > dsku = x[4] > dsku = dsku.lower() > stock = int(x[7]) > if isku == dsku and newprice < int(iprice):# If > found the coresponded SKU and the price is higher than the one in the > CSV I update the price > print dsku, x[6], dprice, newprice > Update_SQL(newprice, isku)# goes to the SQL Update > print isku, newprice > if isku == dsku:# Just a check to see if it works > print "Found %s" %dsku > found = 1 > else: > found = 0 > except IndexError: > pass > except ValueError: > pass > except TypeError: > pass > except IndexError: > pass > if found == 1: > print "%s This is match" % isku > if found == 0: > print "%s Not found" % isku > tnf = tnf +1 > total = total +1 > print "Total updated: %s" % total > print"Total not found with in the distributor: %s" % tnf I tried, I swear I did try, I didn't understand the whole algorithm of the function. However, in a first sight, I find it way to deeply nested. def ... for ... try ... for ... if ... if. Can't you split it in several function, or in methods of a callable class? Somtimes it's finally much more clear and the errors become obvious. Another advice: never ever except XXXError: pass at least log, or count, or warn, or anything, but don't pass. I bet your missing products have disapeared into those black holes. mmmh, now, i see that you set found to 1 only if newprice