Posts by Alexander Silva • 1 point
1 post
-
-2
votes2
answers315
viewsA: Given a number, get the digit of tens
def questao6(n): result = ( n % 100 ) // 10 print(result)
1 post
-2
votes2
answers315
viewsdef questao6(n): result = ( n % 100 ) // 10 print(result)