如何编写将列表转换为集合并返回的函数 没有使用内置的set()函数?
def list_to_set(int_list):
例如,如果
int_list = [2, 3, 1, 2, 4, 3, 5]
该函数应该返回一个
new_set = {1, 2, 3, 4, 5}
答案 0 :(得分:-4)
def list_to_set(int_list):
d = dict()
[d.update({item:'1'}) for item in int_list]
return d.keys()