最佳答案
我试着用 random.randint(0, 100)
,但有些数字是一样的。是否有创建列表唯一随机数的方法/模块?
注意: 下面的代码是 基于一个答案,是在发布答案之后添加的。这不是问题的一部分,而是解决方案。
def getScores():
# open files to read and write
f1 = open("page.txt", "r");
p1 = open("pgRes.txt", "a");
gScores = [];
bScores = [];
yScores = [];
# run 50 tests of 40 random queries to implement "bootstrapping" method
for i in range(50):
# get 40 random queries from the 50
lines = random.sample(f1.readlines(), 40);