import math
a = float(input("Введи значение параметра a "))
x = -1
while True:
if round(x - 2, 2) == 0:
x += 0.6
continue
y = (x + pow(math.sin(a * x + 2), 2)) / (x - 2)
print("{0} {1:.2f} {2} {3:.4f}".format("x=", x, "y(x)=", y))
x += 0.6
if x > 5:
break
Исправил
a=float(input("Введи значение параметра a "))
x=-1
while True:
if round(x - 2, 2)==0:
x+=0.6
continue
y=(x+pow(math.sin(a*x+2),2))/(x-2)
print("{0} {1:.2f} {2} {3:.4f}".format("x=",x, "y(x)=",x+-0.6))
if x>5:
break