首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往

从列表输出中删除"dtype“和"object”

从列表输出中删除"dtype"和"object",可以使用以下方法:

  1. 使用列表推导式:
代码语言:txt
复制
original_list = [1, 'hello', 3.14, True, 'world', 'dtype', 'object']
new_list = [item for item in original_list if item not in ['dtype', 'object']]
print(new_list)

输出:

代码语言:txt
复制
[1, 'hello', 3.14, True, 'world']
  1. 使用filter()函数:
代码语言:txt
复制
original_list = [1, 'hello', 3.14, True, 'world', 'dtype', 'object']
new_list = list(filter(lambda x: x not in ['dtype', 'object'], original_list))
print(new_list)

输出:

代码语言:txt
复制
[1, 'hello', 3.14, True, 'world']
  1. 使用循环遍历并删除:
代码语言:txt
复制
original_list = [1, 'hello', 3.14, True, 'world', 'dtype', 'object']
new_list = original_list.copy()  # 创建一个副本,避免直接修改原始列表
for item in original_list:
    if item in ['dtype', 'object']:
        new_list.remove(item)
print(new_list)

输出:

代码语言:txt
复制
[1, 'hello', 3.14, True, 'world']

以上方法都可以将原始列表中的"dtype"和"object"删除,并返回新的列表。

页面内容是否对你有帮助?
有帮助
没帮助

相关·内容

领券