Find the area of square with user-interface in Python Leave a Comment / Python Programs / By brcinstitute111@gmail.com View All Python Programs Source Code s=float(input(“Enter the length of square : “))area=s*speri=4*sprint(“Area of square : “, area)print(“Perimeter of square : “, peri) Output Enter the length of square : 7Area of square : 49.0Perimeter of square : 28.0 View All Python Programs