On Thu, Jul 14, 2016 at 12:23 AM, Jussi Piitulainen <jussi.piitulai...@helsinki.fi> wrote: > Python 3.4.3 help text for divmod says it returns ((x-x%y)/y, x%y) but > that's not quite correct, because type. Probably // is intended.
Starting with 3.5, it says it returns the tuple (x//y, x%y). ChrisA -- https://mail.python.org/mailman/listinfo/python-list