Posts by Geraldo Castro • 36 points
2 posts
-
2
votes1
answer30
viewsA: Bug in Python Whirlpool library
One thing that may be giving problem is that the file name is equal to the imported library name. Try to rename the file and run again.
-
0
votes2
answers71
viewsA: Allocation of values other than normal
That line could be broken in two, that way: def testes(x, y): while y: x = y y = x % y return x That way, while y is different from 0 (condition for the while stop), the value of x will be changed…