python diviseur d'un nombre code example
Example: faire n fois la division d'un nombre python
from math import log10
def nbdigits(n):
return int(log10(n)) + 1
from math import log10
def nbdigits(n):
return int(log10(n)) + 1