Re: [Tutor] Tkinter and python

2006-10-08 Thread Arun Kumar PG
> python on the command prompt/bash shell the script gets> executed.Hey Dave,Thanks for correcting me. I should read what I am writing before I hit the send button :). It was a stupid mistake.. Appending path to PYTHONPATH will allow us to import the module in some other Python script without req

Re: [Tutor] Tkinter and python

2006-10-08 Thread Dave Kuhlman
On Sun, Oct 08, 2006 at 08:36:31PM +0530, Arun Kumar PG wrote: > Hi, > > You can try: > > >>import sys > >>sys.path.append('') > >>import > > Or else you can append the path to global PYTHONPATH environment variable > and whenever you will type: > > python on the command prompt/bash shell the

Re: [Tutor] Tkinter and python

2006-10-08 Thread Noufal Ibrahim
max . wrote: > first off i just started looking for Tkinter tutorials but havent found > much and what i have found was not very good if anyone knows og any > Tkinter tutorials pleas let me know Try this for a good tutorial http://www.pythonware.com/library/tkinter/introduction/ Peace. _

Re: [Tutor] Tkinter and python

2006-10-08 Thread Arun Kumar PG
Hi,You can try:>> import sys>> sys.path.append('')>> import Or else you can append the path to global PYTHONPATH environment variable and whenever you will type: python on the command prompt/bash shell the script gets executed.Hope that helps.Thanks,- Arun On 10/8/06, max . <[EMAIL PROTECTED]> wro

[Tutor] Tkinter and python

2006-10-08 Thread max .
first off i just started looking for Tkinter tutorials but havent found much and what i have found was not very good if anyone knows og any Tkinter tutorials pleas let me know second is thair anyway to change the path that python looks for a program in ex: if i enter python hello into the comm