python 判断两个集合相等
Posted liutianrui1
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 判断两个集合相等相关的知识,希望对你有一定的参考价值。
import os import cv2 if __name__ == ‘__main__‘: img_path=r‘/home/cui/tianrui_projects/darknet53/code_data/raw_data/images/‘ label_path=r‘/home/cui/tianrui_projects/darknet53/code_data/raw_data/labels/‘ #保证数据一致性 all_imgs=set(map(lambda p:p.split(‘.‘)[0],os.listdir(img_path))) all_labels=set(map(lambda p:p.split(‘.‘)[0],os.listdir(label_path))) print(all_imgs.issubset(all_labels) and all_labels.issubset(all_imgs))
以上是关于python 判断两个集合相等的主要内容,如果未能解决你的问题,请参考以下文章