3

这是一个带回家的测试问题(如果 Gruhn 教授正在无情地搜索 stackoverflow,我会在 20 分钟前寄出这个问题)。第一门计算机科学课程,使用 Python 的介绍。使用“开始使用 Python 2nd Ed”一书。测试基本上是关于创建我们自己的模块库、读取和写入文件以及尝试/排除逻辑。

第一部分要求创建一个彩票号码模拟器。一个生成非唯一数字,另一个生成唯一的、非重复的数字。我在这里看到的每个答案都使用了列表,可悲的是下一章,我们被明确禁止使用它们。

我在本节的代码:

import random

def ballPickerOne():
    a = random.randint(1, 59)
    b = random.randint(1, 59)
    c = random.randint(1, 59)
    d = random.randint(1, 59)
    e = random.randint(1, 59)
    f = random.randint(1, 35)

    showNumbers(a,b,c,d,e,f)


def ballPickerTwo():
   a = random.randrange(1,59,2)
   b = random.randrange(1,59,3)
   c = random.randrange(1,59,5)
   d = random.randrange(1,59,7)
   e = random.randrange(1,59,11)
   f = random.randint(1,35)

   showNumbers(a,b,c,d,e,f)


def showNumbers(a,b,c,d,e,f):

   print("Your Numbers ...")
   print()
   print("Ball 1: ", a)
   print("Ball 2: ", b)
   print("Ball 3: ", c)
   print("Ball 4: ", d)
   print("Ball 5: ", e)
   print("Red Ball: ", f)
   print()
   print("Good Luck")

我们需要使用 showNumbers 函数来显示结果,并以由此产生的格式显示。ballPickerTwo 是“唯一的”一个,我在尝试唯一性失败时使用了质数间隔。我玩弄了一个循环,但不知道如何显示使用 showNumbers 生成的数字。

4

4 回答 4

1

这是一种非常乏味的方法,但它不使用列表。它将选择随机和唯一的值。

def ballPickerTwo():

    a = random.randint(1, 59)

    b = a        
    while b == a:
        b = random.randint(1, 59)

    c = b
    while c == b or c == a:
        c = random.randint(1, 59)

    d = c
    while d == c or d == b or d == a:
        d = random.randint(1, 59)

    ...
于 2012-11-23T04:59:36.420 回答
0

如何使用整数作为位图来检查唯一性?

import random

def showNumbers(a,b,c,d,e,f):
   print("Your Numbers ...")
   print()
   print("Ball 1: ", a)
   print("Ball 2: ", b)
   print("Ball 3: ", c)
   print("Ball 4: ", d)
   print("Ball 5: ", e)
   print("Red Ball: ", f)
   print()
   print("Good Luck")

def ballPickerTwo():
    while True:
        a = random.randint(1, 59)
        b = random.randint(1, 59)
        c = random.randint(1, 59)
        d = random.randint(1, 59)
        e = random.randint(1, 59)
        f = random.randint(1, 35)
        m = 2**a + 2**b + 2**c + 2**d + 2**e + 2**f
        if bin(m).count("1") == 6:
            break
    showNumbers(a,b,c,d,e,f)
于 2012-11-23T05:36:08.133 回答
0

只需返回您生成的值 - 在您的函数中使用 return。例如:

def ballPickerOne():
    a = random.randint(1, 59)
    b = random.randint(1, 59)
    c = random.randint(1, 59)
    d = random.randint(1, 59)
    e = random.randint(1, 59)
    f = random.randint(1, 35)
    return a,b,c,d,e,f

showNumbers(a,b,c,d,e,f)

如果:

from random import sample, randint

def ballPickerOne():
    a,b,c,d,e = sample(range(1,59), 5) 
    f = randint(1,35)
    while f!=a and f!=b and f!=c and f!=d and f!=e:
        f = randint(1,35)
    return a,b,c,d,e,f
于 2012-11-23T04:55:56.547 回答
0

这类似于 HYRY 的答案,因为它使用数字中的位来记住已经选择了哪些数字。这是可行的,因为 Python 可以处理任意大的数字。

import random

def showNumbers(a, b, c, d, e, f):
   print("Your Numbers ...")
   print()
   print("Ball 1: ", a)
   print("Ball 2: ", b)
   print("Ball 3: ", c)
   print("Ball 4: ", d)
   print("Ball 5: ", e)
   print("Red Ball: ", f)
   print()
   print("Good Luck")

def pick(cur_val):
    while True:
        v = random.randint(1, 59)
        m = 2**v
        if (cur_val & m) == 0: # bit not set, v never picked before
            return (cur_val | m), v  # return updated cur_val and bit number now set in it

def ballPickerTwo():
    cur_val = 0
    cur_val, a = pick(cur_val)
    cur_val, b = pick(cur_val)
    cur_val, c = pick(cur_val)
    cur_val, d = pick(cur_val)
    cur_val, e = pick(cur_val)
    cur_val, f = pick(cur_val)

    showNumbers(a, b, c, d, e, f)
于 2012-11-23T06:13:38.337 回答