summaryrefslogtreecommitdiff
path: root/progs/a244.py
blob: 016971c330fe7ca9ac19d9c81c10007c8f3ebb56 (plain)
1
2
3
4
5
6
7
8
import math 
def find_Digits(n): 
    if (n < 0): 
        return 0;
    if (n <= 1): 
        return 1; 
    x = ((n * math.log10(n / math.e) + math.log10(2 * math.pi * n) /2.0)); 
    return math.floor(x) + 1;