Write a program that displays the output of the following arithmetic operation on the screen (3+2/2⋅5)^2.
Solution:
print(((3 + 2) / (2 * 5)) ** 2)
Output:

#Why Python Programming Important
Hope You will learn Something. Happy Coding.
Learn to Serve
print(((3 + 2) / (2 * 5)) ** 2)
#Why Python Programming Important
Hope You will learn Something. Happy Coding.