Write a function to calculate volume of Triangular Pyramid
Topic: Write a function to calculate volume of Triangular Pyramid
Solution
def volumeTriangular(a, b, h): return (0.1666) * a * b * h
List all Python Programs
Solution
def volumeTriangular(a, b, h): return (0.1666) * a * b * h