python 生成不重复的随机数的代码
复制代码 代码如下: import random print ‘N must >K else error’ n=int(raw_input(“n=”)) k=int(raw_input(“k=”)) result=[] x=range(n) for i in range(k): t=random.randint(i,n-1) temp=x[i] x[i]=x[t] x[t]=temp result.append(x[i]) print result raw_input(‘Inpuy AnyKey to exit’) 这是用算法生成的 其实python有方法的 random.sample(li
用户评论