博客
关于我
python学习day11(集合,常见方法)
阅读量:396 次
发布时间:2019-03-04

本文共 707 字,大约阅读时间需要 2 分钟。

????

??????Python??????????????????????????????????????????

???????

?? {} ? set() ??????

  • s1 = {10, 20, 30, 40, 50}

    • ?????{10, 20, 30, 40, 50}
  • s2 = {10, 20, 30, 40, 10, 20}

    • ?????{10, 20, 30, 40}
  • s3 = set('abdbsdf')

    • ?????{'a', 'b', 'd', 'f', 's', 's'}?????
  • s4 = set()

    • ?????<class 'set'>

?????

????

  • add()???????

    s1 = {10, 20, 30, 40, 50}s1.add(100)
    • ???{10, 20, 30, 40, 50, 100}
  • add()????None

    s1.add(10)
    • ???None
  • update()???????

    s2 = [10, 20, 30, 40, 10, 20]s1.update(s2)
    • ???{10, 20, 30, 40}

????

  • remove()??????????????

    s1.remove(10)
    • ???{20, 30, 40, 50}
  • discard()???????????????

    s1.discard(10)
    • ???{20, 30, 40, 50}
  • pop()??????????

    s1.pop()
    • ????40

????

  • in???????

    10 in s1
    • ???True
  • not in????????

    10 not in s1
    • ???True

转载地址:http://msfg.baihongyu.com/

你可能感兴趣的文章
python 录音左右声道_Python分离立体声wav压缩文件的左右声道
查看>>
Python 循环异或对文件进行加解密
查看>>
Python开发环境搭建(附VMware安装包及虚拟机环境)
查看>>
python 微信扫码登录_python实现微信第三方网站扫码登录(Django)
查看>>
Python 快速下载依赖
查看>>
python实现非参数统计的Cochran检验 (附完整源码)
查看>>
python 怎么验证是否安装成功 scrapy
查看>>
Python 手写数字识别-1
查看>>
Python实现接口自动化测试库(JSON与Requests)详解
查看>>
Python 手写数字识别-3-sklearn中的几种算法
查看>>
python实现SSIM和MSSSIM计算 (附完整源码)
查看>>
Python 打开文件注意事项
查看>>
python 批量修改文件名_python windows下批量修改文件名
查看>>
Python 抓取网页乱码问题 以及EXCEL乱码
查看>>
python 抓取网页内容
查看>>
python 按照当前日期创建文件
查看>>
Python 接口并发测试详解
查看>>
Python 接口自动化 —— requests框架
查看>>
python 接口自动化数据结构(如列表、字典、元组)
查看>>
Python 接口自动化测试中的深拷贝与浅拷贝~
查看>>