On Thu, Jul 3, 2014 at 10:51 PM,  <kjaku...@gmail.com> wrote:
> So I've now gotten this:
> class MyTime:
>     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)
> print("between(t2, t3, t1) =", between(t2, t3, t1))

And what happens when you run this code? A NameError, I would expect.
Do you understand how to define and call methods?

ChrisA
-- 
https://mail.python.org/mailman/listinfo/python-list

Reply via email to