Write following arithmetic expressions using operators in Python:
(i) c=a+b2a
(ii) x = a3 + b3 + c3
(iii) A=πr(r+h)2
Answers
Answered by
10
Answer:
i) a+(b*b*a)
2) x=(a*a*a)+(b*b*b)+(c*c*c)
3) A=math.pi*r*(r+h)*2
Answered by
4
Answer:-
These are the python expression,
- c=a+b*b+a
- x=a*a*a+b*b*b+c*c*c
- A=math.pi*r*(r+h)*2
Similar questions