Write a function to return the area of a rhombus with diagonals q1 and q2
Topic: Write a function to return the area of a rhombus with diagonals q1 and q2
Solution
def cal_area_rhombus(q1,q2): return (q1*q2)/2
List all Python Programs
Solution
def cal_area_rhombus(q1,q2): return (q1*q2)/2