Question: PYTHON rectangle(perimeter, area) Returns the longest side of the rectangle with given perimeter and area if and only if both sides are integer lengths. In
PYTHON
rectangle(perimeter, area) Returns the longest side of the rectangle with given perimeter and area if and only if both sides are integer lengths. In a rectangle =2+2 and =. If your solution is using loops, it must have at most one loop. Recursive solutions are not allowed. Hints: To do integer division (also known as floor division), use the // operator. Floor division, as opposed to true division, discards any fractional result from the output. The built-in float.is_integer() method returns True if the float instance is finite with integral value, and False otherwise Preconditions: Inputs int perimeter The perimeter of the rectangle expressed as an integer. int area The area of the rectangle expressed as an integer. Outputs int The longest side length for the rectangle that meets the given requirements. False False is returned if no rectangle exists that meets the requirements. Examples: >>> rectangle(14, 10) # Represents a 2x5 rectangle 5 # 5 is the larger of the two sides >>> rectangle(25, 25) # Represents a 2.5x10 rectangle False # 2.5 is not an int
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
