sharmadp3376 sharmadp3376 06-11-2020 Computers and Technology contestada Create a function that takes a list of numbers between 1 and 10 (excluding one number)and returns the missing number.● Step 1: Create a function missing_num() and pass lst as a parameter inside thisfunction, where lst is the list of numbers from 1 - 10 with one missing number.● Step 2: Run a for loop in range 1 - 11 i.e. from 1 to 10. Inside the for loop, checkwhether the number n is present in the list using an if condition.● Step 3: Inside the for loop, check whether each number is present in the list lstusing an if condition and in and not in operator. If the number is not present in thelist lst[], then print that number in the output.