Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!xlned.com!feeder7.xlned.com!newsfeed.xs4all.nl!newsfeed3a.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.019 X-Spam-Evidence: '*H*': 0.96; '*S*': 0.00; 'subject:Python': 0.06; 'everyone!': 0.07; 'subject:help': 0.08; 'oh,': 0.09; 'subject:modules': 0.09; 'cc:addr:python-list': 0.11; 'line).': 0.16; 'opposite': 0.16; 'remainder': 0.16; 'seconds.': 0.16; 'wouldn\x92t': 0.16; 'wrote:': 0.18; 'received:10.0.1': 0.19; 'feb': 0.22; 'cc:addr:python.org': 0.22; 'looks': 0.24; 'question': 0.24; 'cc:2**0': 0.24; 'header:In-Reply-To:1': 0.27; 'chris': 0.29; '(which': 0.31; 'weeks': 0.32; 'guess': 0.33; 'subject:with': 0.35; 'next': 0.36; 'thanks': 0.36; 'received:10.0': 0.36; 'seconds': 0.37; 'received:10': 0.37; 'pm,': 0.38; 'days': 0.60; 'matter': 0.61; 'header:Message-Id:1': 0.63; 'to:addr:gmail.com': 0.65; 'charset:windows-1252': 0.65; 'hours': 0.66; 'here': 0.66; 'minutes': 0.67; '2014,': 0.84; 'scott': 0.93 X-CT-Class: Clean X-CT-Score: 0.00 X-CT-RefID: str=0001.0A020208.52F85609.00D8,ss=1,re=0.000,fgs=0 X-CT-Spam: 0 X-Authority-Analysis: v=2.0 cv=aZC/a2Ut c=1 sm=1 a=MB85R812cvcrhCHz/P2OVA==:17 a=IwL8z8QTeS0A:10 a=G8Uczd0VNMoA:10 a=N659UExz7-8A:10 a=kviXuzpPAAAA:8 a=_HE405UYfI8A:10 a=pGLkceISAAAA:8 a=ZweDba28LIEkP6q7ZBMA:9 a=pILNOxqGKmIA:10 a=MSl-tDqOz04A:10 a=MB85R812cvcrhCHz/P2OVA==:117 X-CM-Score: 0.00 Authentication-Results: cox.net; auth=pass (PLAIN) smtp.auth=swdunning@cox.net Content-Type: text/plain; charset=windows-1252 Mime-Version: 1.0 (Mac OS X Mail 7.1 \(1827\)) Subject: Re: Python 2.7.6 help with modules From: Scott W Dunning In-Reply-To: Date: Sun, 9 Feb 2014 21:31:03 -0700 Content-Transfer-Encoding: quoted-printable References: <032F2E23-6983-4710-B087-C1771B66C3EF@cox.net> <635C857D-1F7A-4F95-B3A7-F1A3C69BF137@cox.net> <1DA52F3B-CE00-4E47-BE84-C07482966FD7@cox.net> To: Chris Angelico X-Mailer: Apple Mail (2.1827) Cc: "python-list@python.org" 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: 29 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1392006674 news.xs4all.nl 2852 [2001:888:2000:d::a6]:55919 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:65800 On Feb 8, 2014, at 11:30 PM, Chris Angelico wrote: OH, I think I figured it out. =20 > time =3D int(raw_input("Enter number of seconds: =93)) 1000000 > seconds =3D time % 60 Remainder of 40 <- for seconds. > time /=3D 60 Here you take 1000000/60 =3D 16666 (which =3D time for the next line). > minutes =3D time % 60 16666/60 with a remainder of 46 <- minutes > time /=3D 60 Then take 16666/60 =3D 277 (which =3D time for the line below to use). > hours =3D time % 24 Then we use 277/24 with a remainder of 13 <- hours > time /=3D 24 Then it use 277/24=85=85..=20 > days =3D time % 7 > time /=3D 7 > weeks =3D time I guess I answered my own question and it looks like it wouldn=92t = matter if you did it opposite from weeks to seconds. =20 Thanks again for all your help everyone! Scott