Computer Science, asked by mHDRiz, 8 months ago

find the volume of sphere using python​

Answers

Answered by sambhavgautam6
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