summaryrefslogtreecommitdiff
path: root/progs/a448.py
blob: fe5f19a7fbe97e8b63281d0365f51528686f2d62 (plain)
1
2
3
4
import math
def surfacearea_sphere(r):
  surfacearea=4*math.pi*r*r
  return surfacearea