in python please715 LAB Warm up Peoples weights Lists1 Prompt the user to enter four

in python please7.15 LAB: Warm up: People’s weights (Lists)(1) Prompt the user to enter four numbers, each corresponding to a person’s weight in pounds. Store all weights in a list. Output the list. (2 pts)Ex:Enter weight 1: 236.0 Enter weight 2: 89.5 Enter weight 3: 176.0 Enter weight 4: 166.3 Weights: [236.0, 89.5, 176.0, 166.3] (2) Output the average of the list’s elements with two digits after the decimal point. Hint: Use a conversion specifier to output with a certain number of digits after

Read More