We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1cf884a commit 37d7851Copy full SHA for 37d7851
Area perimeter/Rectangle.py
@@ -0,0 +1,6 @@
1
+l=int(input("Enter Length of Rectangle :: "))
2
+b=int(input("Enter Breadth of Rectangle :: "))
3
+area=l*b
4
+perimeter=2*(l+b)
5
+print("\nArea of Rectangle :: ",area)
6
+print("\nPerimeter of Rectangle :: ",perimeter)
0 commit comments