Write a function to return the curved surface area of a cone
Topic: Write a function to return the curved surface area of a cone
Solution
def cal_cone_curved_surf_area(slant_height,radius): pi=3.14 return pi*radius*slant_height
List all Python Programs