明明想在学校中请一些同学一起做一项问卷调查,为了实验的客观性他先用计算机生成了N个1~1000之间的随机整数(N<=1000),N是用户输入的,对于其中重复的数字,只保留一个,把其余相同的数字去掉,不同的数对应着不同的学生的学号,然后再把这些数从小到大排序,按照排好的顺序去找同学做调查,请你协助明明完成“去重”与排序工作
方法一:
import random
n = int (input ('请输入正整数:'))
x= []
for i in range (0 , n):
xuehao = random .randint (1 , 1000)
x. append (xuehao)
print (x)
y= []
for i in x :
if i not in y:
y.append(i) # 去除x中重复元素放进y里
while len(y) < n:
xuehao2 = random .randint (1 , 1000)
if xuehao2 not in y :
y .append (xuehao2)
y .sort () #sort 函数是对原函数直接排序,ysort之后y里就已经排序完成
print (y)
方法二:
import random
n = int (input ('请输入正整数:'))
x= []
for i in range (0 , n):
xuehao = random .randint (1 , 1000)
x. append (xuehao)
print (x)
i = 0
while i < n: # i的值为0 ~n-1
j = x.count (x[i]) #确定索引值为i的元素个数
if j >1:
k = x.index (x[i]) # 获取重复元素的索引值(重复元素个数大于2也没关系多循环几次)
xuehao2 = random .randint (1 , 1000)
if xuehao2 not in x :
x [k] = xuehao2 # 将重复元素替换为新元素
i = i + 1 # 替换成功进行下一个元素
else:
i = i + 1 # 若只有一个元素,进行下一个元素
x .sort ()
print (x)
方法三:利用set
import random
n = int (input ('请输入正整数:'))
x = set() #利用set去重 不能直接x={} 默认为字典
while len(x) < n:
x.add (random .randint (1 , 1000)) #不能用union 否则如果是‘10’进去的是‘1’‘0’
print(sorted(list(x)))