Hey guys I need to figure out where the parentheses fit into this code for the following expression and am a little confused to where the parentheses actually goes into. I keep getting it wrong.
x = float(input('Enter a value for x: '))
# Insert parentheses in the following line to fix the expression.
y = x - 1 ** 0.5 + 1 / 5
print('y = ' + str(y))
>Solution :
y = ( ( (x - 1 ) ** 0.5 ) + 1 ) / 5