FIN551: Python Programming Overview of exercise 1: Given below is a list of numbers consisting of areas of multiple rectangles whose sides are integers For example, is X is an area of the rectangle given by the formula X = A * B here: A = Integer and B = Integer rect_100 = list(range(100)) rect_100 = [i + 1 for i in num_100] 1. Write a function to see if a given rectang
FIN551: Python Programming Overview of exercise 1: Given below is a list of numbers consisting of areas of multiple rectangles whose sides are integers…