LotteryChecker/powerball/game.py
2022-01-05 19:59:44 -06:00

14 lines
267 B
Python
Executable file

#! /usr/bin/python3
from .picks import my_picks
from .Powerball import Powerball
cur_picks = []
cur_pb = 0
for idx, tkt in enumerate(my_picks):
cur_picks = tkt['picks']
cur_pb = tkt['pb']
pbtkt = Powerball(cur_picks, cur_pb)
pbtkt.process_ticket()