# This program calculates the different areas of land that can be fenced off # given a particular length of wire. lengthOfWire = 24 # this is the total length of the wire. # 1. Start a loop. You will need to use the range() function. # Hint: in IDLE, try the following: # range(10) # range(20) # What is the data type of the answer? # What does a for loop need? # 2. Inside the loop, set a length and a width. # Remember that the total perimeter must not be greater than 24! # Calculate the area of the section of grass, and print it out.