Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

First and formost I'm sorry for asking a similar question twice in this short amount of time, its just that I am completely stuck and my assignment is due really soon (my fault). I'm really stuck on how to change the balance from 0 (the default should be 100 not sure why its showing that) to a number that changes depending on whether or not the user wins or loses. Any help would be appreciated.
Anything to point me in the right direction would be amazing.

from __future__ import division 
from Tkinter import *
import tkMessageBox
import os
import subprocess
from random import randrange
from random import shuffle
from random import choice
from time import sleep
import sys, time
from select import select



class MyApp(object):

    a = choice(range(1, 12))
    b = choice(range(1, 12))
    money = 100
    bet = 5
    hand = 0
    m = 100

    def __init__(self):
        self.root = Tk()
        self.root.wm_title("The Game of 21")
        m = IntVar()

        Label(self.root, textvariable = m).grid(row=0, column=0, sticky=E)

        self.root.mainloop()

    def gameOn(self):
        """Setup the application's main window as a 2x5 grid"""
        self.root = Tk()
        self.root.wm_title("The Game of 21")
        a = choice(range(1, 12))
        b = choice(range(1, 12))


        self.cards = StringVar()
        Label(self.root, text = 'Cards dealt:').grid(row = 1, column = 0, sticky = W) #cards dealt
        Label(self.root, text = self.a).grid(row = 1, column = 1, sticky = E)        # card 1 (aka card a)
        Label(self.root, text = ',').grid(row = 1, column = 2)      # inserting a comma between card1 and card2
        Label(self.root, text = self.b).grid(row = 1, column = 3)        # card 2 (aka card b)
        Label(self.root, text = 'Total = %d' %(self.a + self.b + self.hand)).grid(row = 1, column = 4)  # card 1 + card 2
        Label(self.root, text = "Time remaining:").grid(row = 3, column = 1) 

        Button(self.root, text="Hit", command=self.hit).grid(row = 2, column = 0)  #create a button
        Button(self.root, text="Stand" , command=self.stand).grid(row = 2, column = 1) # create a button


    def hit(self):
        self.hand = choice(range(1, 12))  
        total = self.hand + self.a + self.b 
        dealerHand = choice(range(14,25))
#         self.bet.set(amount)
        self.root.destroy()

        result = "Dealer wins. You lose."# , self.money = self.money - self.bet, m.set(self.money)

        if dealerHand > 21 and total < 22: 
            self.money = self.money - self.bet
            m.set(self.money)
            result = "Winner! Winner! Chicken Dinner!"
        if total > 21:
            result
            self.money = self.money - self.bet
            m.set(self.money)

        elif total > dealerHand:
            self.money = self.money + self.bet
            m.set(self.money)

            result = "Winner! Winner! Chicken Dinner!" 
        elif total == dealerHand: 
            self.money = self.money - self.bet
            m.set(self.money)

            result = "Dealer wins. You lose." 
        print self.money
        tkMessageBox.showinfo("Results" , "Hand = %d\nDealer = %d\n%s" %((total), (dealerHand), result)) # print result


    def stand(self): 
        self.hand = 0
        total = self.hand + self.a + self.b 
        dealerHand = choice(range(14,25))    
        self.root.destroy()

        result = "Dealer wins. You lose."
        if dealerHand > 21 and total < 22: 
            self.money += self.bet
            result = "Winner! Winner! Chicken Dinner!"
        if total > 21: 
            self.money += self.bet
            result
        elif total > dealerHand: 
            self.money += self.bet
            result = "Winner! Winner! Chicken Dinner!" 
        elif total == dealerHand: 
            self.money += self.bet
            result = "Dealer wins. You lose." 
        print self.money
        tkMessageBox.showinfo("Results" , "Your hand: %d\nDealer: %d\n%s" %((self.hand + self.a + self.b), (dealerHand), result)) # print result




MyApp()
share|improve this question
I don't see a balance anywhere in this code. – Bill the Lizard Nov 6 '12 at 0:12

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.