摘要:
def random_sql(): ''' 封装一个能创建1024个不同字段的表 :return: ''' res = 'username' new=[] for i in range(1024): res1 = res + str(i) # print(res1) new.append((res1 阅读全文
摘要:
list1 = [1,1,1,1,3,12,3,99,88,3,2] list1.sort() a = list1[-1] for i in range(len(list1)-2,-1,-1): if list1[i] == a: list1.remove(list1[i]) else: a = l 阅读全文