190603 Python 集合内置函数

文章目录
  1. 1. add
  2. 2. clear
  3. 3. copy
  4. 4. remove
  5. 5. discard
  • II. 其他
    1. 1. 一灰灰Blog: https://liuyueyi.github.io/hexblog
    2. 2. 声明
    3. 3. 扫描关注
  • 集合内置的函数介绍

    • add: 添加
    • clear: 清空
    • copy: 拷贝
    • remove/discard: 删除

    1. add

    添加元素到集合,不存在则加入;存在则不操作

    1
    2
    s = {1,2,3}
    s.add(2)

    2. clear

    清空

    1
    2
    s = {1,2,3}
    s.clear()

    3. copy

    拷贝

    1
    2
    s = {1, 2, [1,2,3]}
    a = s.copy()

    4. remove

    删除一个不存在的元素时,会抛异常

    1
    2
    s = {1, 2, 3}
    s.remove(4)

    5. discard

    删除一个不存在的元素时,不操作

    1
    2
    s = {1, 2, 3}
    s.remove(4)

    II. 其他

    1. 一灰灰Bloghttps://liuyueyi.github.io/hexblog

    一灰灰的个人博客,记录所有学习和工作中的博文,欢迎大家前去逛逛

    2. 声明

    尽信书则不如,以上内容,纯属一家之言,因个人能力有限,难免有疏漏和错误之处,如发现bug或者有更好的建议,欢迎批评指正,不吝感激

    3. 扫描关注

    一灰灰blog

    QrCode

    # Python

    评论

    Your browser is out-of-date!

    Update your browser to view this website correctly. Update my browser now

    ×