Q1:Write a function that returns a new list by eliminating theduplicate values in the list. Use the following function header:def eliminateDuplicates(lst):Write a test program that reads in a list of integers, invokes the function,and displays the result. Here is the sample run of the program
Enter ten numbers: 2 3 2 1 6 3 4 5 2The distinct numbers are: 1 2 3 6 4 5
Q2:Write a program that reads in your Q1 Pythonsource code file and counts the occurrence of each keyword in the file.Your program should prompt the user to enter the Python source code filename.
This is the Q1: code:
def eliminateDuplictes(lst):newlist = []search = set()for i in lst:if i not in search:newlist.append(i)search.add(i)return newlist
a=[]n= int(input("Enter the Size of the list:"))for x in range(n):item=input("\nEnter element " + str(x+1) + ":")a.append(item)
result = eliminateDuplictes(a)
print('\nThe distinct numbers are: ',"%s" % (' '.join(result)))
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here