Question: Complete the script so that it removes duplicate items from the list a .

a = ["1", 1, "1", 2]

Expected output

  ['1', 2, 1] 

Hint 1: Sets are datatypes where duplicates are not allowed.

Hint 2: You can use a set function to convert the list to a set and then a list function to convert the set back to a list.