Answers for "Python program to calculate area of a rectangle using function"

0

Python program to calculate area of a rectangle using function

def AreaofRectangle(width, height):
    Area = width * height
    print("Area of a Rectangle is: %.2f" %Area)
AreaofRectangle(8, 6)
Posted by: Guest on August-17-2021

Code answers related to "Python program to calculate area of a rectangle using function"

Python Answers by Framework

Browse Popular Code Answers by Language