-1
Finally, I need to print out a tuple. I’m having difficulty with for example the input 30000 return (5, 00003) when it should return (5,3) and the input 103090 returning (6, 090301) when it should be (6, 90301).
def digitos(numero):
return len(numero)
def inverso(numero):
return (numero)[::-1]
print(digitos(numero),inverso(numero))