Step 2 — Run This Python Script
from mpmath import mp, pi
def get_pi_chunk(start, length):
mp.dps = start + length + 10
pi_str = mp.nstr(pi, start + length, strip_zeros=False)
pi_str = pi_str.replace('.', '')
return pi_str[start - 1 : start - 1 + length]
# Change these numbers to whatever chunk you want
start = 1 # which digit to start from
length = 1000 # how many digits to compute
chunk = get_pi_chunk(start, length)
print(chunk)
Step 3 — Submit Your Digits
Copy the output, head to the ② Submit tab, paste your digits and enter your name. That's it!