訪問項 您無法通過引用索引或鍵來訪問集合中的項。但是,您可以使用for迴圈遍歷集合項,或者使用in關鍵字檢查集合中是否存在指定的值。 示例,遍歷集合併列印值: thisset = {"apple", "banana", "cherry"} for x in thisset: print(x) 示例, ...
訪問項
您無法通過引用索引或鍵來訪問集合中的項。但是,您可以使用for
迴圈遍歷集合項,或者使用in
關鍵字檢查集合中是否存在指定的值。
示例,遍歷集合併列印值:
thisset = {"apple", "banana", "cherry"}
for x in thisset:
print(x)
示例,檢查集合中是否存在 "banana":
thisset = {"apple", "banana", "cherry"}
print("banana" in thisset)
Python - 添加集合項
一旦創建了集合,您就不能更改其項,但可以添加新項。要向集合添加一個項,請使用add()
方法。
示例,使用add()
方法向集合添加一個項:
thisset = {"apple", "banana", "cherry"}
thisset.add("orange")
print(thisset)
要將另一個集合中的項添加到當前集合中,請使用update()
方法。
示例,將tropical
中的元素添加到thisset
中:
thisset = {"apple", "banana", "cherry"}
tropical = {"pineapple", "mango", "papaya"}
thisset.update(tropical)
print(thisset)
添加任何可迭代對象
update()
方法中的對象不必是集合,可以是任何可迭代對象(元組、列表、字典等)。
示例,將列表的元素添加到集合中:
thisset = {"apple", "banana", "cherry"}
mylist = ["kiwi", "orange"]
thisset.update(mylist)
print(thisset)
Python - 刪除集合項
要刪除集合中的項,可以使用remove()
或discard()
方法。
示例,使用remove()
方法刪除 "banana":
thisset = {"apple", "banana", "cherry"}
thisset.remove("banana")
print(thisset)
註意:如果要刪除的項不存在,remove()
將引發錯誤。
示例,使用discard()
方法刪除 "banana":
thisset = {"apple", "banana", "cherry"}
thisset.discard("banana")
print(thisset)
註意:如果要刪除的項不存在,discard()
不會引發錯誤。
您還可以使用pop()
方法來刪除一個項,但此方法將刪除一個隨機項,因此不能確定刪除哪個項。pop()
方法的返回值是已刪除的項。
示例,使用pop()
方法刪除一個隨機項:
thisset = {"apple", "banana", "cherry"}
x = thisset.pop()
print(x)
print(thisset)
註意:由於集合是無序的,因此在使用pop()
方法時無法確定刪除哪個項。
示例,clear()
方法將清空集合:
thisset = {"apple", "banana", "cherry"}
thisset.clear()
print(thisset)
示例,del
關鍵字將完全刪除集合:
thisset = {"apple", "banana", "cherry"}
del thisset
print(thisset)
Python - 遍歷集合
您可以使用for
迴圈遍歷集合項:
示例,遍歷集合併列印值:
thisset = {"apple", "banana", "cherry"}
for x in thisset:
print(x)
希望這些信息對您有所幫助!如果有任何問題或需要更多解釋,請隨時提問。
最後
為了方便其他設備和平臺的小伙伴觀看往期文章,鏈接奉上:
公眾號搜索Let us Coding
,知乎,開源中國,CSDN,思否,掘金,InfoQ,簡書,博客園,慕課,51CTO,helloworld,騰訊開發者社區,阿裡開發者社區
看完如果覺得有幫助,歡迎點贊、收藏和關註