import numpy as np
v = 1
w = np.exp (-1)
while abs(v-w) >= 10**-6 :
    v = np.exp (-w)
    w = np.exp (-v)
print (w)

Embed on website

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