从列表输出中删除"dtype"和"object",可以使用以下方法:
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)
输出:
[1, 'hello', 3.14, True, 'world']
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)
输出:
[1, 'hello', 3.14, True, 'world']
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)
输出:
[1, 'hello', 3.14, True, 'world']
以上方法都可以将原始列表中的"dtype"和"object"删除,并返回新的列表。
领取专属 10元无门槛券
手把手带您无忧上云