Posts by Lucia • 11 points
1 post
-
1
votes1
answer238
viewsQ: Typeerror: not all Arguments converted During string formatting
def reduce(self,a,b): self.dividend =a self.divisor = b if(a != 0 and b != 0 ): if(a > b): self.dividend = a self.divisor = b else: self.dividendo = a self.divisor = b while(a % b != 0 ): r = a %…
python-3.xasked Lucia 11