Posts by gustavo • 1 point
1 post
-
-4
votes3
answers8551
viewsA: Get the number of digits in a number
def achaTamanho(x): return (len(str(x))) num = int(input("Digite um número: ")) print(achaTamanho(num))
1 post
-4
votes3
answers8551
viewsdef achaTamanho(x): return (len(str(x))) num = int(input("Digite um número: ")) print(achaTamanho(num))