1. Write a Python program to check whether a list contains a sublist. # Input # a = [2,4,3,5,7] # b = [4,3] # c = [3,7] # print(is_Sublist(a, b)) # print(is_Sublist(a, c)) # Output 2. Write a Python program to find common items from two lists. # input # color1 = "Red", "Green", "Orange", "White" # color2 = "Black", "Green", "White", "Pink" # output # {'Green', 'White'} 3. Write a Python program to get the difference between the two lists # Input # list1 = [1, 2, 3, 4] # list2 = [1, 2] # Output # [3,4] 4. Write a Python program to generate all permutations of a list in Python # Input [1,2,3] # Output [(1, 2, 3), (1, 3, 2), (2, 1, 3), (2, 3, 1), (3, 1, 2), (3, 2, 1)] 5. Write a Python program to remove duplicates from a list. # Input a = [10,20,30,20,10,50,60,40,80,50,40] # Output {40, 10, 80, 50, 20, 60, 30}