Question: using python Question 1: Generate a list of 300 random values in the range 1-99. Determine, print, and remove duplicate values of numbers from the
Question 1: Generate a list of 300 random values in the range 1-99. Determine, print, and remove duplicate values of numbers from the list that appears more than 2 times. Your program should print sorted original list generated randomly, (Ex: (1,1,4,4,4,5,6,6,10,10,10,10)) . duplicate values that appear more than 2 times, and (Ex: [4,4,4,10,10,10,10)) the list without duplicates that appear more than 2 times. (Ex: (1,1,5,6,61) (Hint: you many want to sort the list first.)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
