Computer Science, asked by payal961, 10 months ago

50 points!!
➖➖➖➖➖➖
Spammed be away✖️✖️✖️


QUALITY CONTENT REQUIRED...


Write a python program to calculate:-
✅Area of rectangle
✅Perimeter of Rectangle
✅Area of cirlce​

Answers

Answered by Anonymous
3

Explanation:

Answer:

Hey! This is my code to calculate area and perimeter of rectangle in python

length = 50

breadth = 20

print("Area of rectangle: ", length*breadth)

print("Perimeter of rectangle: ", 2(length+breadth))

HOPE IT HELPS!!

Answered by kamalhajare543
2

Answer:

answer

In this python article, we would love to share with you how to find Area of a Rectangle and Perimeter of a Rectangle. And as well as definitions of area rectangle and formulas to find the area of rectangle.

What is Area of Rectangle?

Area is 2-dimensional: it has a length and a width. Area is measured in square units such as square inches, square feet or square meters. To find the area of a rectangle, multiply the length by the width. The formula is: A = L * W where A is the area, L is the length, W is the width, and * means multiply

what is perimeter of rectangle?

A rectangle has four sides in which sides opposite to each other are equal. The perimeter of the rectangle is the area around its outside.

Suppose a, b, c, d are the four sides of rectangle.

a=c and b=d

Python Program To find Area Of Circle?

Write a python program to find area of circle using radius, circumstance and diameter. The Python area of a circle is number of square units inside the circle. Standard formula to calculate the area of a circle is: A=πr².

Python Program to find Area Of Circle using Radius?

If we know the radius then we can calculate the area of a circle using formula: A=πr² (Here A is the area of the circle and r is radius). In this python program, we will find area of a circle using radius.

Similar questions