Python —使用整数筛选元组
需要对包含整数的元组进行筛选时,可以使用简单的迭代以及“not”操作符和“isinstance”方法。
示例
如下演示:
my_tuple = [(14, 25, "Python"), (5, 6), (3, ), ("cool", )] print("The tuple is :") print(my_tuple) my_result = [] for sub in my_tuple: temp = True for element in sub: if not isinstance(element, int): temp = False break if temp : my_result.append(sub) print("The result is :") print(my_result)
输出
The tuple is : [(14, 25, 'Python'), (5, 6), (3,), ('cool',)] The result is : [(5, 6), (3,)]
说明
定义了一个元组列表,并在控制台上显示。
创建一个空列表。
对列表进行迭代,使用“isinstance”方法查看元素是否属于整数类型。
如果是,布尔值会被指定为“False”。
控件会跳出循环。
根据布尔值,会将元素追加到空列表。
这是显示在控制台上的输出。
广告