最佳答案
我在python中有一个文件名的list
,我想从所有的文件名中构造一个set
。
filelist=[]
for filename in filelist:
set(filename)
这似乎并不奏效。怎么做呢?