find the volume of sphere using python
Answers
Answered by
1
point to remember :-
python is case sensitive so make sure you use same variables with acpital and lowercases..
keep practicing
leave space for better understanding
Explanation:
- #voume of a sphere
- n=int(input("Enter the radius of sphere"))
- Vol = (4/3 *3.14) * (r**3)
- print("volume of sphereis :::", Vol)
Similar questions