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


Groups > comp.lang.python > #73849

Re: OOP with MyTime

From Akira Li <4kir4.1i@gmail.com>
Subject Re: OOP with MyTime
Date 2014-07-02 23:45 +0400
References <7020a5d8-96a9-4fa4-8e69-4c7593dedee3@googlegroups.com>
Newsgroups comp.lang.python
Message-ID <mailman.11417.1404330343.18130.python-list@python.org> (permalink)

Show all headers | View raw


kjakupak@gmail.com writes:

> I'm trying to write a boolean function that takes two Mytime objects, t1 and t2 as arguments, and returns True if the object falls inbetween the two times.
>
> This is a question from the How to Think Like a Computer Scientist book, and I need help.
>
> What I've gotten so far:
>
> class MyTime:
>     def __init__(self, hrs=0, mins=0, secs=0):
>         self.hours = hrs
>         self.minutes = mins
>         self.seconds = secs
>     def between(t1, t2):
>         if float(t1 <= t3) and float(t3 < t2):
>             return True
>         else:
>             return False
>
> I just don't understand how to make a function that uses MyTime objects into the boolean function? Any help would be great.

A method accepts the object itself as the first parameter:

  import functools

  @functools.total_ordering
  class MyTime:
    ...
    def inbetween(self, t1, t2):
        """Return whether `self` is in [t1, t2) right-open range."""
        return t1 <= self < t2 # `self` is the object itself
    def _astuple(self):
        return (self.hours, self.minutes, self.seconds)
    def __lt__(self, other):
        """Return whether `self < other`."""
        return self._astuple() < other._astuple()
    def __eq__(self, other):
        """Return whether `self == other`."""
        return self._astuple() == other._astuple()

See
https://docs.python.org/3/library/functools.html#functools.total_ordering

Example:

  >>> MyTime(1).inbetween(MyTime(0), MyTime(2))
  True

It is equivalent to:

  >>> MyTime(0) <= MyTime(1) < MyTime(2)
  True


--
Akira

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