Path: csiph.com!usenet.pasdenom.info!news.redatomik.org!newsfeed.xs4all.nl!newsfeed3.news.xs4all.nl!xs4all!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.020 X-Spam-Evidence: '*H*': 0.96; '*S*': 0.00; 'subject:number': 0.07; 'subject:How': 0.09; 'wed,': 0.15; '2014': 0.16; '28th': 0.16; 'expecting': 0.16; 'sebastian': 0.16; 'subject:between': 0.16; 'subject:dates': 0.16; 'subject:weeks': 0.16; 'wrote:': 0.16; '>>>': 0.20; 'am,': 0.23; '2015': 0.23; 'import': 0.24; 'header :In-Reply-To:1': 0.24; 'message-id:@mail.gmail.com': 0.28; '12th': 0.29; 'skip:d 20': 0.32; 'weeks': 0.34; 'subject:?': 0.34; 'received:google.com': 0.34; 'to:addr:python-list': 0.35; 'subject:: ': 0.37; 'say': 0.38; 'to:addr:python.org': 0.39; 'total': 0.64; 'python-list': 0.66; 'cheung': 0.84; 'to:name:python': 0.84; 'subject:find': 0.91 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :content-type; bh=3zDc9qHfqG05WVMIcnXcuygreOZSzq6//Kls40mdeIk=; b=vgzCnNwKfHF3IsDrp1JOkAQ6IkKVUVHtW9tSdHQeZIRJe/JL+plqgS0G4yGq01vbJz EN3HBx5RrFyLRSllyGMTih12AlxWd69QwAocjr0J9S/KXuTwFcHC1wiRBc4KQama6oQ3 WPxjS9rhBw+TmOPOj5iPnAXkSNJ9b/+JNFrj9i97id08YuDPHXcX155PjCF2hXu/qlhg 9Tu73NKNoG9Ny+2Dp2CPIvad9wMtPgSW8CXBn8r9TIFzilD7nywXDvYeR0NIX6LAqq2H L/J4WsTMtefAfUeK2Wi38Yx2t9IleLQC2KqvsBE8HwjfN0TvbJ/SyGGnrwFrqSPSsiO7 vexw== X-Received: by 10.13.229.198 with SMTP id o189mr5582943ywe.108.1433958160315; Wed, 10 Jun 2015 10:42:40 -0700 (PDT) MIME-Version: 1.0 In-Reply-To: References: From: Ian Kelly Date: Wed, 10 Jun 2015 11:42:00 -0600 Subject: Re: How to find number of whole weeks between dates? To: Python 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: 13 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1433958601 news.xs4all.nl 2854 [2001:888:2000:d::a6]:57052 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:92415 On Wed, Jun 10, 2015 at 11:05 AM, Sebastian M Cheung via Python-list wrote: > Say in 2014 April to May whole weeks would be 7th, 14th 28th April and May would be 5th, 12th and 19th. So expecting 7 whole weeks in total >>> from datetime import date >>> d1 = date(2014, 4, 7) >>> d2 = date(2014, 5, 19) >>> d2 - d1 datetime.timedelta(42) >>> (d2 - d1).days 42 >>> (d2 - d1).days // 7 6