here is my code so far
from Tkinter import*
root = Tk()
root.title("main screen")
root.maxsize(width=350,height=200)
root.minsize(width=350,height=200)
root.resizable(width=YES,height=YES)
def child1():
c1 = Toplevel(root)
c1.guess_ent = Entry(c1, width = 35,)
c1.guess_ent.grid(row = 1
Christopher Hatherly wrote:
> Hi,
> I'm brand new to Python, and almost brand new to programming. I'm
> teaching myself slowly through a 'Python Programming for the Absolute
> Beginner' book, which is great so far.
Awesome, I'm always happy to hear of budding pythonistas :D
> One of the challeng
Hi,
I'm brand new to Python, and almost brand new to programming. I'm
teaching myself slowly through a 'Python Programming for the Absolute
Beginner' book, which is great so far. One of the challenge problems
though, was to write a script for a number guessing game, where you pick
a number and the