The sigmoid function squashes any real number into the range (0, 1) — it's the classic activation function that turns a raw score into something that looks like a probability.
Formula: sigmoid(x) = 1 / (1 + e^-x)
Task: write a function sigmoid(x) that takes a single number x and returns sigmoid(x), rounded to 4 decimal places.
math.exp for e^x.