POV-Ray : Newsgroups : povray.newusers : What does the 'mod' operator do? : Re: What does the 'mod' operator do? Server Time
10 Nov 2025 20:45:43 EST (-0500)
  Re: What does the 'mod' operator do?  
From: Bald Eagle
Date: 10 Nov 2025 15:20:00
Message: <web.691248401bdd44317f81dbac25979125@news.povray.org>
"Kenneth" <kdw### [at] gmailcom> wrote:

> Unfortunately, I'm still a bit puzzled by the docs' written description.

Check out the "divmod" function!
https://docs.python.org/3/library/functions.html#divmod

divmod(a, b, /)
Take two (non-complex) numbers as arguments and return a pair of numbers
consisting of their quotient and remainder when using integer division. With
mixed operand types, the rules for binary arithmetic operators apply. For
integers, the result is the same as (a // b, a % b). For floating-point numbers
the result is (q, a % b), where q is usually math.floor(a / b) but may be 1 less
than that. In any case q * b + a % b is very close to a, if a % b is non-zero it
has the same sign as b, and 0 <= abs(a % b) < abs(b).

HuhSayWhat?

"Your next assignment, should you choose to accept it....."

:D


Post a reply to this message

Copyright 2003-2023 Persistence of Vision Raytracer Pty. Ltd.