zoukankan      html  css  js  c++  java
  • 0017_集合的补充

    1.类型:

    list(列表):   允许重复的集合,可修改

    tuple(元组):允许重复的集合,不可修改

    dict(字典)

    set:不允许重复的集合

    set详解:

    1.创建

    set类型创建只能创建空的det集合,创建方式如下:

    s = set()

    s = {11,22,33,44}

    2.转换

    l = [11,22,11,2]

    ll = (11,22,111,2)

    s=set[l]

    ss = set(l)

    3.set提供的方法

    add  添加元素

  • 相关阅读:
    其他
    Win10
    Win10
    面向对象与设计模式
    Git
    Java
    Git
    Git
    Git
    一、I/O操作(File文件对象)
  • 原文地址:https://www.cnblogs.com/elijahxb/p/6491222.html
Copyright © 2011-2022 走看看