On 04/02/13 06:15, Jack Little wrote:
So I have gotten responses to my previous email sent 3 days ago, all saying
define path1pt1() before simpstart, but I do not know how. Help?


You have something like this:


...code...
...more code...
path1pt1()
...
...

def path1pt1():
    definition goes here



Select the text starting with "def path1pt1" in your text editor, and ending
with the end of the function. Then cut the text (Ctrl-X), move the cursor to
the top of the file, and paste it (Ctrl-V). Clean up any extra blank lines
needed. Your code should then look like this:


def path1pt1():
    definition goes here

...code...
...more code...
path1pt1()
...
...




--
Steven
_______________________________________________
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
http://mail.python.org/mailman/listinfo/tutor

Reply via email to