Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #65800
| 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 | <swdunning@cox.net> |
| 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 <swdunning@cox.net> |
| In-Reply-To | <Q6YW1n0063bjUJS016YX8V> |
| 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> <F4033A14-BA16-4897-9998-65D431B5071C@cox.net> <Q6YW1n0063bjUJS016YX8V> |
| To | Chris Angelico <rosuav@gmail.com> |
| X-Mailer | Apple Mail (2.1827) |
| Cc | "python-list@python.org" <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 <python-list.python.org> |
| List-Unsubscribe | <https://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe> |
| List-Archive | <http://mail.python.org/pipermail/python-list/> |
| List-Post | <mailto:python-list@python.org> |
| List-Help | <mailto:python-list-request@python.org?subject=help> |
| List-Subscribe | <https://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.6612.1392006674.18130.python-list@python.org> (permalink) |
| 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 |
Show key headers only | View raw
On Feb 8, 2014, at 11:30 PM, Chris Angelico <rosuav@gmail.com> wrote:
OH, I think I figured it out.
> time = int(raw_input("Enter number of seconds: “))
1000000
> seconds = time % 60
Remainder of 40 <- for seconds.
> time /= 60
Here you take 1000000/60 = 16666 (which = time for the next line).
> minutes = time % 60
16666/60 with a remainder of 46 <- minutes
> time /= 60
Then take 16666/60 = 277 (which = time for the line below to use).
> hours = time % 24
Then we use 277/24 with a remainder of 13 <- hours
> time /= 24
Then it use 277/24……..
> days = time % 7
> time /= 7
> weeks = time
I guess I answered my own question and it looks like it wouldn’t matter if you did it opposite from weeks to seconds.
Thanks again for all your help everyone!
Scott
Back to comp.lang.python | Previous | Next | Find similar | Unroll thread
Re: Python 2.7.6 help with modules Scott W Dunning <swdunning@cox.net> - 2014-02-09 21:31 -0700
csiph-web