Python List Duplicates
Working with python at the moment for the HELOpg Slime Project and needs to remove the duplicates from a list in python and found this great little method.
`</p>
myList = list(set(myList))
` Found [online][1]. [1]: http://love-python.blogspot.co.uk/2008/09/remove-duplicate-items-from-list-using.html