Re: [Tutor] Tutor Newbie

2008-08-01 Thread Monika Jisswel
it would take learning to use some of the modules that help create GUIs. they are : wx and Tkinter 2008/7/25 Sam Last Name <[EMAIL PROTECTED]> > Hey guys, need some info on "programs" :) > > > Heres a Very simple Script that works with basically any numbers. > > > width = input("What is the Width

Re: [Tutor] Tutor Newbie

2008-07-25 Thread bhaaluu
On Thu, Jul 24, 2008 at 10:41 PM, Sam Last Name <[EMAIL PROTECTED]> wrote: > Hey guys, need some info on "programs" :) > > Heres a Very simple Script that works with basically any numbers. > > width = input("What is the Width?") > length = input("What is the Length?") > area = width*length > print

Re: [Tutor] Tutor Newbie

2008-07-25 Thread Alan Gauld
"Sam Last Name" <[EMAIL PROTECTED]> wrote Hey guys, need some info on "programs" :) A program has two meanings in programming! To the programmer a program is just a piece of sofftware that he has written, usually one that is runnable. It may be an entire *application* or just a part of a bigg

[Tutor] Tutor Newbie

2008-07-24 Thread Sam Last Name
Hey guys, need some info on "programs" :) Heres a Very simple Script that works with basically any numbers. width = input("What is the Width?") length = input("What is the Length?") area = width*length print area # my question is what would it take (programs, extra stuff in script, ect..) to