摘要:
model 层定义如下 from django.db import models# Create your models here.class Types(models.Model): id = models.AutoField(primary_key=True) firsts = models.C 阅读全文
摘要:
列表去重的四种方法如下 #方法一 AList = [1, 2, 3, 1, 2] print(list(set(AList))) lists = [] while len(AList)!=0: num = AList.pop() if num not in lists: lists.append(n 阅读全文