I have a list of filenames in python and I would want to construct a set out of all the filenames.
list
set
filelist=[] for filename in file
Simply put the line:
new_list = set(your_list)