from math import exp
def g():
    x=-4
    y=4*exp(-2)
    z=4*exp(-2)
    while y<=z:
        x=x+0.1
        y=3*x*exp(-2)+16*exp(-2)
        z=-x*exp(x+2)
    return(x)

print(g())

Embed on website

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