摘要: # -*- coding: utf_8 _*_# Author:Vi#集合是无序的list_1 = [1,2,3,2,3,5,7]list_1 = set(list_1)#将列表转变成集合list_2 = set([2,6,3,888,8])print(list_1,type(list_1))#ty 阅读全文
posted @ 2019-04-28 21:02 arnold2029 阅读(121) 评论(0) 推荐(0)