write a loop to populate the list user guesses with a number of guesses. the variable num guesses is the number of guesses the user will have, which is read first as an integer. read each guess (an integer) one at a time using int(input()).sample output with input:3952user guesses: [9, 5, 2]