Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python area of rectangle

l = float(input('Enter the length of a Rectangle: '))
b = float(input('Enter the breadth of a Rectangle: '))
Area = l * b
print("Area of a Rectangle is: %.2f" %Area)
Source by pythonguides.com #
 
PREVIOUS NEXT
Tagged: #python #area #rectangle
ADD COMMENT
Topic
Name
1+5 =