Solution Exercise 29 remove duplicate elements in a list with python
Exercise 29 Write a Python program that removes duplicate items from a list. Solution First method # -*- coding: utf-8 -*-# define a function that remove duplicate element in listdef…