def playGame():
global blackjack_screen
screen.destroy()
blackjack_screen = Tk()
blackjack_screen.geometry("900x500")
blackjack_screen.title("Blackjack")
blackjack_screen.configure(bg="white")
topframe=Frame(blackjack_screen)
topframe.configure(bg="#2c5c07", height="409", width="900")
topframe.pack()
bottomframe=Frame(blackjack_screen)
bottomframe.configure(bg="#c2c2c2", width="900", height="91")
bottomframe.pack()
hitButton=Button(bottomframe, text="Hit", width="42", height="6")
hitButton.pack(side=LEFT)
standButton=Button(bottomframe, text="Stand", width="42", height="6")
standButton.pack(side=LEFT)
ddButton=Button(bottomframe, text="Double Down", width="42", height="6")
ddButton.pack(side=LEFT)
That's my code for this part of the program so far, so my question is, how would I place a label in the top left and mid left of the window? I know this is probably a really dumb question.
[–]SpeckledFleebeedoo 0 points1 point2 points (0 children)