summaryrefslogtreecommitdiff
path: root/progs/a445.py
blob: c59c6057cdac3e07c212a334366e7c09342b7d57 (plain)
1
2
3
4
import math
def volume_sphere(r):
  volume=(4/3)*math.pi*r*r*r
  return volume