Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #73900

Re: OOP with MyTime

X-Received by 10.182.255.225 with SMTP id at1mr2258388obd.29.1404391905821; Thu, 03 Jul 2014 05:51:45 -0700 (PDT)
X-Received by 10.140.87.199 with SMTP id r65mr148qgd.33.1404391905789; Thu, 03 Jul 2014 05:51:45 -0700 (PDT)
Path csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!news.glorb.com!hn18no2506795igb.0!news-out.google.com!a8ni6410qaq.1!nntp.google.com!w8no5550721qac.0!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail
Newsgroups comp.lang.python
Date Thu, 3 Jul 2014 05:51:45 -0700 (PDT)
In-Reply-To <mailman.11418.1404331330.18130.python-list@python.org>
Complaints-To groups-abuse@google.com
Injection-Info glegroupsg2000goo.googlegroups.com; posting-host=198.151.130.240; posting-account=hr1E-woAAADNjPTt4DadGtfyke-Rk1wn
NNTP-Posting-Host 198.151.130.240
References <7020a5d8-96a9-4fa4-8e69-4c7593dedee3@googlegroups.com> <mailman.11418.1404331330.18130.python-list@python.org>
User-Agent G2/1.0
MIME-Version 1.0
Message-ID <fd30a5f9-c446-435a-9f0a-74dd2d608c5c@googlegroups.com> (permalink)
Subject Re: OOP with MyTime
From kjakupak@gmail.com
Injection-Date Thu, 03 Jul 2014 12:51:45 +0000
Content-Type text/plain; charset=ISO-8859-1
Xref csiph.com comp.lang.python:73900

Show key headers only | View raw


On Wednesday, July 2, 2014 4:02:00 PM UTC-4, MRAB wrote:
> >
> 
> If you want 'between' to be an instance method of the MyTime class, it
> 
> needs 'self' as well as the 2 arguments 't1' and 't2'.
> 
> 
> 
> You can then compare the hours, minutes and seconds of self against
> 
> those of t1 and t2:
> 
> 
> 
>      def between(self, t1, t2):
> 
>          return (t1.hours, t1.minutes, t1.seconds) <= (self.hours, 
> 
> self.minutes, self.seconds) and (self.hours, self.minutes, self.seconds) 
> 
> <= (t2.hours, t2.minutes, t2.seconds)
> 
> 
> 
> That could be shortened further using chained comparisons.
> 
> 
> 
> Note that the code assumes that the times t1 and t2 are ordered, i.e.
> 
> that time t1 is not later/greater than time t2.

So I've now gotten this:
class MyTime:

    def __init__(self, hrs=0, mins=0, secs=0):
        self.hours = hrs
        self.minutes = mins
        self.seconds = secs

        if self.seconds >= 60:
            self.minutes += self.seconds // 60
            self.seconds = self.seconds % 60

        if self.minutes >= 60:
            self.hours += self.minutes // 60
            self.minutes = self.minutes % 60

        if self.hours >= 24:
            self.hours = self.hours % 24

    def get_sec(self):
        return (self.hours * 60 + self.minutes) * 60 + self.seconds

    def __str__(self):
        return "{:02d}:{:02d}:{:02d}".\
               format(self.hours, self.minutes, self.seconds)

    def between(self, t1, t2):
        return (t1.hours, t1.minutes, t1.seconds) <= (self.hours, self.minutes, self.seconds) and (self.hours, self.minutes, self.seconds) <= (t2.hours, t2.minutes, t2.seconds)


t1 = MyTime(9, 59, 59)
print("t1 =", t1)

t2 = MyTime(10, 0, 1)
print("t2 =", t2)

t3 = MyTime(10, 0, 0)
print("t3 =", t3)

print("between(t2, t3, t1) =", between(t2, t3, t1))
print("between(t1, t3, t2) =", between(t1, t3, t2))
print("between(t3, t1, t2) =", between(t3, t1, t2))
print("between(t1, t2, t3) =", between(t1, t2, t3))

Am I on the right track or? Not sure where to go from here

Back to comp.lang.python | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

OOP with MyTime kjakupak@gmail.com - 2014-07-02 12:20 -0700
  Re: OOP with MyTime Akira Li <4kir4.1i@gmail.com> - 2014-07-02 23:45 +0400
  Re: OOP with MyTime MRAB <python@mrabarnett.plus.com> - 2014-07-02 21:02 +0100
    Re: OOP with MyTime kjakupak@gmail.com - 2014-07-03 05:51 -0700
      Re: OOP with MyTime Chris Angelico <rosuav@gmail.com> - 2014-07-03 23:01 +1000
        Re: OOP with MyTime kjakupak@gmail.com - 2014-07-03 06:08 -0700
          Re: OOP with MyTime Chris Angelico <rosuav@gmail.com> - 2014-07-03 23:17 +1000
      Re: OOP with MyTime MRAB <python@mrabarnett.plus.com> - 2014-07-03 14:11 +0100
        Re: OOP with MyTime kjakupak@gmail.com - 2014-07-03 08:21 -0700
          Re: OOP with MyTime Chris Angelico <rosuav@gmail.com> - 2014-07-04 01:35 +1000
          Re: OOP with MyTime Mark Lawrence <breamoreboy@yahoo.co.uk> - 2014-07-03 17:23 +0100

csiph-web