Datasets:
| def _modulo(self, decimal_argument): | |
| """pass""" | |
| _times, remainder = self._context.divmod(decimal_argument, 100) | |
| return remainder if remainder >= 0 else remainder + 100 |
| def _modulo(self, decimal_argument): | |
| """pass""" | |
| _times, remainder = self._context.divmod(decimal_argument, 100) | |
| return remainder if remainder >= 0 else remainder + 100 |