当需要测试元组中是否包含不同的元素时,可以使用'set'方法和'len'方法。
Python带有一个称为“ set”的数据类型。该“集合”包含仅唯一的元素。
“ len”方法给出传递给它的参数的长度。
以下是相同的演示-
my_tuple_1 = (11, 14, 54, 0, 58, 41) print("The tuple is : ") print(my_tuple_1) my_result = len(set(my_tuple_1)) == len(my_tuple_1) print("Is the tuple distinct ? ") print(my_result)输出结果
The tuple is : (11, 14, 54, 0, 58, 41) Is the tuple distinct ? True
元组已定义并显示在控制台上。
将元组转换为集合,并确定其长度,然后确定原始元组的长度。
这两个使用'=='运算符进行检查。
这已分配给一个值。
它显示在控制台上。