Posts by Harley Santos • 101 points
1 post
-
10
votes4
answers5082
viewsQ: What does /= mean in Python?
Can anyone tell me what //= means in python? On line 8 of this code has the use of it. n = int(input("Digite um numero menor que 10: ")) aux, reverso = n, 0 while aux != 0: dig = aux%10 reverso =…