fix pi
This commit is contained in:
parent
0ce42b645a
commit
1342571e91
1 changed files with 2 additions and 4 deletions
|
@ -1,12 +1,10 @@
|
|||
from mpmath import mp
|
||||
mp.dps = 10000
|
||||
PI = str(mp.pi).replace('.', '')
|
||||
|
||||
class random(object):
|
||||
PI = str(mp.pi).replace('.', '')
|
||||
|
||||
def __init__(self, offset=0):
|
||||
self.position = offset
|
||||
mp.dps = 10000 + offset
|
||||
self.PI = str(mp.pi).replace('.', '')
|
||||
self.numbers = list(map(int, self.PI[offset:]))
|
||||
|
||||
def __call__(self):
|
||||
|
|
Loading…
Reference in a new issue