Re: [Tutor] Basic Help Implementing Saved Scripts

2008-07-10 Thread Alan Gauld
<[EMAIL PROTECTED]> wrote in message The idea is that I want to make a few functions and be able to pull them up within my program without copy and pasting them. Is it possible in Python? Do I have to import them? Yes, you create a module and import the module. I've tried looking at tutoria

Re: [Tutor] Basic Help Implementing Saved Scripts

2008-07-09 Thread John Fouhy
On 10/07/2008, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Hi, > Sorry for this, most likely, idiotic question on my part. I'm really > liking Python and it's > ease of use. My only trouble is that I'm not sure how to use a script that > I've saved, during > another script located withi

[Tutor] Basic Help Implementing Saved Scripts

2008-07-09 Thread jar_head
Hi, Sorry for this, most likely, idiotic question on my part. I'm really liking Python and it's ease of use. My only trouble is that I'm not sure how to use a script that I've saved, during another script located within the same folder. The idea is that I want to make a few functions a