1) Area of a rectangle given its length and width: # Calculate the area of a rectangle # Hashnode format area = length * width return area # Get the length and width of the rectangle from the user. length = float(input("Enter the length of the re...