faire n fois la division d 27un nombre python

Solutions on MaxInterview for faire n fois la division d 27un nombre python by the best coders in the world

showing results for - "faire n fois la division d 27un nombre python"
Ilhan
18 Nov 2020
1from math import log10
2
3def nbdigits(n):
4    return int(log10(n)) + 1
5