set(xml_files_list).intersection(set(jpg_files_list))中intersection的用法
时间: 2024-05-22 14:11:49 浏览: 111
python(list,tuple,set,dict)
`intersection()` 是 Python 中的一个集合操作函数,表示求两个集合的交集。在这个例子中,`set(xml_files_list)`和`set(jpg_files_list)`都将列表转化为了集合,然后用`intersection()`找到了两个集合的交集,即既在`xml_files_list`中又在`jpg_files_list`中的元素。最终返回的是这个交集的集合。
阅读全文