Python二维列表去重,有两种方法:使用集合:
Python二维列表去重,有两种方法:
1. 使用集合:
python
# 定义一个二维列表
list_2d = [[1, 2], [3, 4], [5, 6], [1, 2]]
# 将二维列表转换成集合
set_2d = s服务器托管网et(map(tuple, list_2d))
# 将集合转换成二维列表
list_2d_unique = list(map(list, set_2d))
# 打印结果
print(list_2d_unique)
# [[1, 2], [3, 4], [5, 6]]
2. 使用列表推导式:
python
# 定义一个二维列表
list_2d = [[1, 2], [3, 4], [5, 6], [1, 2]]
# 使用列表推导式进行去重
list_2d_unique = [list(x) for x in set(tuple(x)服务器托管网 for x in list_2d)]
# 打印结果
print(list_2d_unique)
# [[1, 2], [3, 4], [5, 6]]
服务器托管,北京服务器托管,服务器租用 http://www.fwqtg.net
机房租用,北京机房租用,IDC机房托管, http://www.fwqtg.net
相关推荐: USACO section 2.1 The Castle(dfs)
The Castle IOI’94 – Day 1 In a stroke of luck almost beyond imagination, Farmer John was sent a ticket to the Irish Sweepstakes (r…