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)
  • 相关阅读:
    转 configure: error: Cannot find ldap.h
    DDoS(Distributed Denial of Service,分布式拒绝服务)
    j2ee 1.5和1.6的区别
    机器学习
    免安装版Tomcat6.0启动方法
    mysql补充(2)常用sql语句
    mysql补充(4)数据完整性
    mysql补充(3)优化sql语句查询常用的30种方法
    mysql补充(1)校对集utf8_unicode_ci与utf8_general_ci
    jdbc(1)(一)
  • 原文地址:https://www.cnblogs.com/tszr/p/10963246.html
Copyright © 2011-2022 走看看