I currently have something like this.

class applicant():
    def __int__(self, x, y):
        self.randomnum = normalvariate(x, y)
then other stuff

x, y are only used to calculate self.randomnum   and this seems to
work. But I want self.randomnum to be 0 <= randomnum <= 100. The only
way I can thing of to do this is is with a while statement and that
seems more complicated than necessary. I would really like to keep it
on one line. How would I do that?

Thanks
Vincent Davis
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to