Re: [Tutor] Getting started with Python

2018-07-24 Thread Mats Wichmann
On 07/24/2018 01:55 PM, Aimee Hubbard wrote: > Hi, > I have done some introductory courses with Python, but they did not cover > how to get Python (3.7 version 64 bit) up and running on my own computer. I > have it downloaded on my Windows 10 computer and made sure in my > "Environment Variables" t

Re: [Tutor] Getting started with Python

2008-05-16 Thread jay
rom:* [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] *On > Behalf Of *jay > *Sent:* Friday, May 16, 2008 9:44 AM > *To:* tutor@python.org > *Subject:* Re: [Tutor] Getting started with Python > > Have you tried this ? > > import sys > sys.path.append('/directory1/d

Re: [Tutor] Getting started with Python

2008-05-16 Thread Hansen, Mike
t: Re: [Tutor] Getting started with Python Have you tried this ? import sys sys.path.append('/directory1/directory2') import file.py j On Fri, May 16, 2008 at 10:20 AM, Moishy Gluck &l

Re: [Tutor] Getting started with Python

2008-05-16 Thread jay
Have you tried this ? import sys sys.path.append('/directory1/directory2') import file.py j On Fri, May 16, 2008 at 10:20 AM, Moishy Gluck <[EMAIL PROTECTED]> wrote: > > > On Fri, May 16, 2008 at 11:20 AM, Moishy Gluck <[EMAIL PROTECTED]> > wrote: > >> You need to place a "__init__.py" file in

Re: [Tutor] Getting started with Python

2008-05-16 Thread Moishy Gluck
On Fri, May 16, 2008 at 11:20 AM, Moishy Gluck <[EMAIL PROTECTED]> wrote: > You need to place a "__init__.py" file in a directory you want to reference > in an import statement. > > I don't believe the content of the file is important but you can place code > in the file that will affect how files

Re: [Tutor] Getting Started with Python

2006-09-11 Thread Kent Johnson
tomd wrote: > Hi Will, > > do a search in the archives, plenty of similar discussions, even just > few days ago. Try http://wiki.python.org/moin/BeginnersGuide/NonProgrammers > > (Admins: consider sending a welcome message on the subscription to > each newcomer specifying usually recommended sour

Re: [Tutor] Getting Started with Python

2006-09-11 Thread tomd
Hi Will, do a search in the archives, plenty of similar discussions, even just few days ago. Try http://wiki.python.org/moin/BeginnersGuide/NonProgrammers (Admins: consider sending a welcome message on the subscription to each newcomer specifying usually recommended sources.) > just recently hav