Exemple #1
0
def blindsStruct():
    
    startingStack = int(raw_input("What is your starting stack: "))
    hours = int(raw_input("How long do you want the game to go for in hours? Enter 0 if unsure: "))

    director = THAssistant()

    print ""
    print "Blinds Structure"
    
    structure, period = director.blindsStructure(startingStack, hours)

    for e, blinds in enumerate(structure):
        print e+1, ":", blinds

    print "Each blind period should go for", period, "minutes."