The radius of a sphere is 7.5 metres. Write python script to calculate it's area and volume.
Answers
Answered by
10
Answer:
Please Mark as brainliest..
Explanation:
- #Python program to print area and volume of sphere
- R=7.5
- area=4*3.14*R**2
- volume=4/3*3.14*R**3
- print("Area of sphere is::",area)
- print("Volume of sphere is::",volume)
Similar questions