Computer Science, asked by mehwishh, 3 months ago

(2)
14) Write Python expressions equivalent to the following arithmetic
expressions
i) x3 + x2+2 xy
ut + at?

Answers

Answered by vijayakumarchinthala
1

Answer:

Expecting x3 as x to the power of 3

x=int(input("Enter a value"))

y=int(input("Enter second value"))

print(x**3+x**2+(2*x*y))

Explanation:

Answered by Anonymous
0

(2)

14) Write Python expressions equivalent to the following arithmetic

expressions

i) x3 + x2+2 xy

ut + at?

Similar questions