PythonでListの中の重複している値を無くす

fruit = ['apple','banana','strawberry','banana','apple']
result = list(set(fruit))

setを使って、重複している値を取り除く。