Python Example – Write a Python program to calculate the area of a sector.

(Python Example for Citizen Data Scientist & Business Analyst)

 

Write a Python program to calculate the area of a sector.

 

Note: A circular sector or circle sector, is the portion of a disk enclosed by two radii and an arc, where the smaller area is known as the minor sector and the larger being the major sector.

 

Sample Solution:

Python Code:


def sectorarea():
    pi=22/7
    radius = float(input('Radius of Circle: '))
    angle = float(input('angle measure: '))
    if angle >= 360:
        print("Angle is not possible")
        return
    sur_area = (pi*radius**2) * (angle/360)
    print("Sector Area: ", sur_area)

sectorarea()

Sample Output:

Radius of Circle: 4                                                                                           
angle measure: 45                                                                                             
Sector Area:  6.285714285714286

 

Write a Python program to calculate the area of a sector

Sign up to get end-to-end “Learn By Coding” example.



Disclaimer: The information and code presented within this recipe/tutorial is only for educational and coaching purposes for beginners and developers. Anyone can practice and apply the recipe/tutorial presented here, but the reader is taking full responsibility for his/her actions. The author (content curator) of this recipe (code / program) has made every effort to ensure the accuracy of the information was correct at time of publication. The author (content curator) does not assume and hereby disclaims any liability to any party for any loss, damage, or disruption caused by errors or omissions, whether such errors or omissions result from accident, negligence, or any other cause. The information presented here could also be found in public knowledge domains.

Leave a Reply

Your email address will not be published. Required fields are marked *