def 表(f,x):
    for X in range(x):
        yield (X,f(X))

def D(f):
    return (lambda x,k=f:k(x)-k(x-1))

for x,y in 表(D(lambda x:(x**3)),9999999):
    try:
        print(f"{x}:{y}")
    except:
        break
    

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: