> I typed in to my script:
> a = open (dupli, r)
> and got an error stating that "dupli" is not deffined.

it needs the quotes around it. so try:

a = open ("dupli", "r")
_______________________________________________
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
http://mail.python.org/mailman/listinfo/tutor

Reply via email to