Contents
def f(x):
    return x**2/(3 + x)


print(f(0)) 

# perform other tests:
print(f(-1), f(1/3))