File size: 166 Bytes
848d4b7
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
from mpmath import mp

mp.dps = 200

def compute():
    return mp.euler   # Euler–Mascheroni constant

if __name__ == "__main__":
    print(mp.nstr(compute(), 180))