Find the area of cube with user-interface in Python
View All Python Programs Source Code s=float(input(“Enter the edge of cube : “))area=6*(s*s)peri=12*sprint(“Area of cube : “, area)print(“Perimeter of cube : “, peri) Output Enter the edge of cube : 5Area of cube : 150.0Perimeter of cube : 60.0 View All Python Programs
Find the area of cube with user-interface in Python Read More »