import math
x = float(input('Enter value of x \n'))
print ('\n')
if x < 5:
print ('The value of f(x) is \n')
print (((x**2)/(abs(x)+2))**2)
How to set up the code so that when the line "print (((x**2)/(abs(x)+2))**2)" runs it also rounds the output value?