HOME/Articles/

area square rectangle (snippet)

Article Outline

Python example 'area square rectangle'

area square rectangle

Python beginners example: area square rectangle

length=int(input('Enter the length : '))
breadth=int(input('Enter the breadth : '))
print('The area for given length and breadth is : ',length*breadth)