Beispiel #1
0
    def __init__(self):
        self.book = 0
        self.emails = ""

        # Generate the numbers and insert them into the numbers array in the order we want them to appear in the game
        num = NumberGenerator()
        num.generate_numbers()
        num.fill_lists()
        num.view_numbers(num.numbers)

        self.numbers = [
            num.first, num.second, num.third, num.fourth, num.fifth, num.sixth
        ]