时间:2021-05-22
本文实例讲述了python集合用法。分享给大家供大家参考。具体分析如下:
# sets are unordered collections of unique hashable elements# Python23 tested vegaseat 09mar2005# Python v2.4 has sets built inimport setsprint "List the functions within module 'sets':"for funk in dir(sets): print funk# create an empty setset1 = set([])# now load the setfor k in range(10): set1.add(k)print "\nLoaded a set with 0 to 9:"print set1set1.add(7)print "Tried to add another 7, but it was already there:"print set1# make a list of fruits as you put them into a basketbasket = ['apple', 'orange', 'apple', 'pear', 'orange', 'banana']print "\nThe original list of fruits:"print basket# create a set from the list, removes the duplicatesfruits = sets.Set(basket)print "\nThe set is unique, but the order has changed:"print fruits# let's get rid of some duplicate wordsstr1 = "Senator Strom Thurmond dressed as as Tarzan"print "\nOriginal string:"print str1print "A list of the words in the string:"wrdList1 = str1.split()print wrdList1# now create a set of unique wordsstrSet = sets.Set(wrdList1)print "The set of the words in the string:"print strSetprint "Convert set back to string (order has changed!):"print " ".join(strSet)print# comparing two sets, bear with me ...colorSet1 = sets.Set(['red','green','blue','black','orange','white'])colorSet2 = sets.Set(['black','maroon','grey','blue'])print "colorSet1 =", colorSet1print "colorSet2 =", colorSet2# same as (colorSet1 - colorSet2)colorSet3 = colorSet1.difference(colorSet2)print "\nThese are the colors in colorSet1 that are not in colorSet2:"print colorSet3# same as (colorSet1 | colorSet2)colorSet4 = colorSet1.union(colorSet2)print "\nThese are the colors appearing in both sets:"print colorSet4# same as (colorSet1 ^ colorSet2)colorSet5 = colorSet1.symmetric_difference(colorSet2)print "\nThese are the colors in colorSet1 or in colorSet2, but not both:"print colorSet5# same as (colorSet1 & colorSet2)colorSet6 = colorSet1.intersection(colorSet2)print "\nThese are the colors common to colorSet1 and colorSet2:"print colorSet6希望本文所述对大家的Python程序设计有所帮助。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文实例讲述了C#中的集合用法,分享给大家供大家参考。具体分析如下:【集合不同于数组,是一组可变类型的、可变数量的元素的组合,这些元素可能共享某些特征,需要以某
本文实例讲述了jQuery与原生JavaScript选择HTML元素集合用法。分享给大家供大家参考,具体如下:通过调用document.getElementsB
本文实例讲述了Python面向对象之继承和组合用法。分享给大家供大家参考,具体如下:面向对象的组合用法软件重用的重要方式除了继承之外还有另外一种方式,即:组合组
本文实例分析了c#中Empty()和DefalutIfEmpty()用法。分享给大家供大家参考。具体分析如下:在项目中,当我们想获取IEnumerable集合的
本文实例讲述了C#中IEnumerable接口用法。分享给大家供大家参考。具体分析如下:枚举数可用于读取集合中的数据,但不能用于修改基础集合。最初,枚举数定位在