中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

Python中set怎樣創建和操作

小樊
81
2024-11-19 18:13:58
欄目: 編程語言

在Python中,可以使用大括號{}或者set()函數來創建一個集合(set)。集合是一個無序的、不重復的元素序列。

創建集合的方法如下:

  1. 使用大括號{}創建集合,元素之間用逗號,分隔。例如:

    my_set = {1, 2, 3, 4, 5}
    
  2. 使用set()函數創建集合,傳入一個可迭代對象(如列表、元組等)作為參數。例如:

    my_set = set([1, 2, 3, 4, 5])
    my_set = set((1, 2, 3, 4, 5))
    

操作集合的方法有很多,以下是一些常用的方法:

  1. 添加元素:使用add()方法向集合中添加一個元素。例如:

    my_set = {1, 2, 3}
    my_set.add(4)
    print(my_set)  # 輸出:{1, 2, 3, 4}
    
  2. 刪除元素:使用remove()方法從集合中刪除一個元素。如果元素不存在,會拋出KeyError異常。例如:

    my_set = {1, 2, 3}
    my_set.remove(2)
    print(my_set)  # 輸出:{1, 3}
    

    要避免異常,可以使用discard()方法,如果元素不存在,不會拋出異常。例如:

    my_set = {1, 2, 3}
    my_set.discard(2)
    print(my_set)  # 輸出:{1, 3}
    
  3. 集合長度:使用len()函數獲取集合中元素的個數。例如:

    my_set = {1, 2, 3, 4, 5}
    print(len(my_set))  # 輸出:5
    
  4. 判斷元素是否存在:使用in關鍵字判斷一個元素是否在集合中。例如:

    my_set = {1, 2, 3, 4, 5}
    print(3 in my_set)  # 輸出:True
    print(6 in my_set)  # 輸出:False
    
  5. 遍歷集合:使用for循環遍歷集合中的元素。例如:

    my_set = {1, 2, 3, 4, 5}
    for item in my_set:
        print(item)
    
  6. 集合運算:集合之間可以進行并集(union)、交集(intersection)、差集(difference)等運算。例如:

    set_a = {1, 2, 3, 4, 5}
    set_b = {4, 5, 6, 7, 8}
    
    # 并集
    union_set = set_a.union(set_b)
    print(union_set)  # 輸出:{1, 2, 3, 4, 5, 6, 7, 8}
    
    # 交集
    intersection_set = set_a.intersection(set_b)
    print(intersection_set)  # 輸出:{4, 5}
    
    # 差集
    difference_set = set_a.difference(set_b)
    print(difference_set)  # 輸出:{1, 2, 3}
    

0
河源市| 徐闻县| 噶尔县| 徐州市| 龙岩市| 洛宁县| 通河县| 留坝县| 同江市| 嘉黎县| 阿尔山市| 攀枝花市| 余干县| 两当县| 北京市| 黎川县| 甘洛县| 黔江区| 日喀则市| 石河子市| 阳城县| 中西区| 碌曲县| 华池县| 蓝山县| 神农架林区| 佳木斯市| 朝阳县| 和硕县| 雅江县| 德阳市| 连江县| 惠水县| 绥芬河市| 梁河县| 安福县| 工布江达县| 江陵县| 元朗区| 淄博市| 衡阳市|