Questions tagged «inclusion»

7
如何检查以下所有项目是否都在列表中?
我发现存在一个有关的问题,即如何查找列表中是否至少有一项:如何检查列表中 是否有以下一项? 但是,找到列表中是否存在所有项的最佳方式是什么? 搜索文档后,我发现此解决方案: >>> l = ['a', 'b', 'c'] >>> set(['a', 'b']) <= set(l) True >>> set(['a', 'x']) <= set(l) False 其他解决方案是这样的: >>> l = ['a', 'b', 'c'] >>> all(x in l for x in ['a', 'b']) True >>> all(x in l for x in ['a', 'x']) False 但是在这里您必须进行更多的键入。 …
114 list  python  inclusion 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.