标签:com code 测试 src 类型 info set http list
集合
集合里面的元素必须是不可变的数据类型,集合本身是可变的数据类型。
集合是无序的,不重复。
1,列表去重。
l1 = [1, 1, 2, 3, 4, 3, 2, 4, 5, 6] set1 = set(l1) print(set1) l1 = list(set1) print(l1)
2,关系测试。
标签:com code 测试 src 类型 info set http list
原文地址:https://www.cnblogs.com/wangkaiok/p/9870113.html