摘要: lst = []while len(lst)< 7: from random import randint i = randint(1, 36) if i not in lst: lst.append(i)print(lst) from random import randints = set() 阅读全文
posted @ 2019-06-10 13:46 冰灬荷 阅读(139) 评论(0) 推荐(0) 编辑