Using Python Code write a program to
calculate the following algebraic
expression, by taking input of x from
user. 12x2 – x3 + 7x + 6
Answers
Answered by
2
Answer:
x, y = 4, 3
result = x * x + 2 * x * y + y * y
print("({} + {}) ^ 2) = {}".format(x, y, result))
Similar questions