python数组排列
『壹』 python 怎么给list 排序
>>>a=[99,1,-90,6]
>>>a.sort()#正常的正序
>>>a
[-90,1,6,99]
>>>a.sort(reverse=True)#指定reverse=True倒序
>>>a
[99,6,1,-90]
>>>a.sort(key=lambdax:abs(x))#指定key=lambdax:abs(x)按照绝版对值排权序
>>>a
[1,6,-90,99]
『贰』 python二维数组按第一列排序问题,整行数据一起排序。
def by0(t):
return t[0]
a=[[1,2,4],[6,3,5],[2,4,5]]
a0=sorted(a,key=by0)
print(a0)
如果是多维数组按当中某行数据排序,修改自版定义函数中return的数权就行了
『叁』 在python中如何实现列表中元素的所有排列组合如输入为['1','2','3']和2输出为['
#!/usr/bin/python
#Two method for generate a list whose item is all possible permutation and combination come from every item of many list.
A = ['1', '2']
B = ['a', 'b', 'c']
C = ['A', 'B', 'C', 'D']
retList = []
for a in A:
for b in B:
for c in C:
retList.append((a,b,c))
print retList
print '*' * 40
def myfunc(*lists):
#list all possible composition from many list, each item is a tuple.
#Here lists is [list1, list2, list3], return a list of [(item1,item2,item3),...]
#len of result list and result list.
total = rece(lambda x, y: x * y, map(len, lists))
retList = []
#every item of result list.
for i in range(0, total):
step = total
tempItem = []
for l in lists:
step /= len(l)
tempItem.append(l[i/step % len(l)])
retList.append(tuple(tempItem))
return retList
print myfunc(A,B,C)
『肆』 在python中,怎么根据数组a对数组b进行排序
# 以数组 a 的从小到大的顺序为基准,对数组b进行重排序,并返内回排序结果的容索引数
import numpy as np
a = np.array([0,1,3,2,6,4,5])
b = np.array([0,1,2,3,4,5,6])
index = np.lexsort((b, a))
『伍』 python中两个list该如何排序
#似乎可以更简单
list1=[1,2,3,4,5,6]
list2=['a','b','c','d','e','f']
c=list(zip(list1,list2))
c.sort(reverse=True)#降序
list1[:],list2[:]=zip(*c)
print(list1,list2)
#当然如果使用MongoDB的话,可以直接内进行排容序
『陆』 python怎么实现数组排序
#合成一个字典来
ab=dict(zip(a,b))
#根据源字典的键进行排序(也就是第一个列表);也可以根据第二个列表进行排序。
#具体是升序还是降序,自己挑着来。
ab_order=sorted(ab.items(),key=lambdax:x[0],reverse=
False)
『柒』 python数组怎么排乱序,就是已知数组中一些的数字随机排列
>>>import random
>>> x=[1,2,3,4]
>>> random.shuffle(x)
>>> x
[4, 3, 2, 1]
>>> random.shuffle(x)
>>> x
[1, 3, 2, 4]
>>> random.shuffle(x)
>>> x
[3, 1, 4, 2]
>>> random.shuffle(x)
>>> x
[2, 1, 3, 4]
『捌』 python 根据规则进行数组排序
写个cmp函数就可以了
deft(x,y):
returncmp(x[1][-7:],y[1][-7:])
s.sort(cmp=t)
prints