zoukankan      html  css  js  c++  java
  • 吴裕雄--天生自然 PYTHON3开发学习:集合

    fruits = {"apple", "banana", "cherry"}
    fruits.add("orange") 
    print(fruits)
    fruits = {"apple", "banana", "cherry"}
    fruits.clear()
    print(fruits)
    fruits = {"apple", "banana", "cherry"}
    x = fruits.copy()
    print(x)
    x = {"apple", "banana", "cherry"}
    y = {"google", "microsoft", "apple"}
     
    z = x.difference(y) 
     
    print(z)
    x = {"apple", "banana", "cherry"}
    y = {"google", "microsoft", "apple"}
     
    x.difference_update(y) 
     
    print(x)
    fruits = {"apple", "banana", "cherry"}
     
    fruits.discard("banana") 
     
    print(fruits)
    x = {"apple", "banana", "cherry"}
    y = {"google", "runoob", "apple"}
     
    z = x.intersection(y) 
     
    print(z)
    x = {"apple", "banana", "cherry"}
    y = {"google", "runoob", "apple"}
     
    x.intersection_update(y) 
     
    print(x)
    x = {"apple", "banana", "cherry"}
    y = {"google", "runoob", "facebook"}
     
    z = x.isdisjoint(y) 
     
    print(z)
    x = {"apple", "banana", "cherry"}
    y = {"google", "runoob", "apple"}
     
    z = x.isdisjoint(y) 
     
    print(z)
    fruits = {"apple", "banana", "cherry"}
     
    fruits.pop() 
     
    print(fruits)
    fruits = {"apple", "banana", "cherry"}
     
    fruits.remove("banana") 
     
    print(fruits)
    x = {"apple", "banana", "cherry"}
    y = {"google", "runoob", "apple"}
     
    z = x.symmetric_difference(y) 
     
    print(z)
    x = {"apple", "banana", "cherry"}
    y = {"google", "runoob", "apple"}
     
    x.symmetric_difference_update(y) 
     
    print(x)
    x = {"apple", "banana", "cherry"}
    y = {"google", "runoob", "apple"}
     
    z = x.union(y) 
     
    print(z)
    x = {"a", "b", "c"}
    y = {"f", "d", "a"}
    z = {"c", "d", "e"}
     
    result = x.union(y, z) 
     
    print(result)
    x = {"apple", "banana", "cherry"}
    y = {"google", "runoob", "apple"}
     
    z = x.union(y) 
     
    print(z)
    x = {"a", "b", "c"}
    y = {"f", "d", "a"}
    z = {"c", "d", "e"}
     
    result = x.union(y, z) 
     
    print(result)
    x = {"apple", "banana", "cherry"}
    y = {"google", "runoob", "apple"}
     
    x.update(y) 
     
    print(x)
  • 相关阅读:
    [k8s]通过svc来访问集群podhttp://api:8080/api/v1/namespaces/default/services/mynginx/proxy/
    redis 常用配置
    mysql 查询重复值命令
    maven3常用命令创建Project
    nginx如何解决超长请求串
    hbase 使用备忘
    Top命令内存占用剖析
    linux 模拟延时和丢包
    hbase命令备忘
    linux grep命令总结
  • 原文地址:https://www.cnblogs.com/tszr/p/10963246.html
Copyright © 2011-2022 走看看