python集合数据类型:将列表转换为set

时间:2018-04-24 12:48:38

标签: python

如何编写将列表转换为集合并返回的函数 没有使用内置的set()函数?

def list_to_set(int_list):

例如,如果

int_list = [2, 3, 1, 2, 4, 3, 5]

该函数应该返回一个

new_set = {1, 2, 3, 4, 5}

1 个答案:

答案 0 :(得分:-4)

def list_to_set(int_list):
   d = dict()
   [d.update({item:'1'}) for item in int_list]
   return d.keys()