Re: [Tutor] help - SyntaxError: Non-UTF-8 code using python 3

2012-08-08 Thread Lily Tran
Thanks. I found the problem character and was able to resolve it. Lily On 8/8/12 10:10 PM, "Dave Angel" wrote: >On 08/08/2012 11:26 PM, Lily Tran wrote: >> Hello; >> >> >> I am getting the following error when I try to run this python program >>in eclipse. I am running python 3: >> >> >> Fil

Re: [Tutor] help - SyntaxError: Non-UTF-8 code using python 3

2012-08-08 Thread Dave Angel
On 08/08/2012 11:26 PM, Lily Tran wrote: > Hello; > > > I am getting the following error when I try to run this python program in > eclipse. I am running python 3: > > > File "/Users/lilytran/Desktop/python/Ex_Files_Python_3_EssT/Exercise > Files/class_beginner_python/hw3_2_lab6.py", line 30 >

[Tutor] help - SyntaxError: Non-UTF-8 code using python 3

2012-08-08 Thread Lily Tran
Hello; I am getting the following error when I try to run this python program in eclipse. I am running python 3: File "/Users/lilytran/Desktop/python/Ex_Files_Python_3_EssT/Exercise Files/class_beginner_python/hw3_2_lab6.py", line 30 SyntaxError: Non-UTF-8 code starting with '\xd0' in file

Re: [Tutor] Unzip a zipfile, then unzip the zipfiles within the original zip

2012-08-08 Thread Dave Angel
On 08/08/2012 11:34 AM, Ramchandra Apte wrote: > Sorry. This is my first time using a mailing list! Any idea how to send a > message without replying? > > There are several ways to send a message to this list by email, depending on how the message relates to others. If you're starting a new topic

Re: [Tutor] Unzip a zipfile, then unzip the zipfiles within the original zip

2012-08-08 Thread Steven D'Aprano
On 09/08/12 01:34, Ramchandra Apte wrote: Sorry. This is my first time using a mailing list! Any idea how to send a message without replying? The same way you would send a message to anyone else without replying. In your mail program, click "New Message" or "Write Message" or whatever the co

Re: [Tutor] Unzip a zipfile, then unzip the zipfiles within the original zip

2012-08-08 Thread Emile van Sebille
On 8/8/2012 8:34 AM Ramchandra Apte said... Sorry. This is my first time using a mailing list! Any idea how to send a message without replying? ___ Address an email to Tutor@python.org Tutor maillist - Tutor@python.org Emile To unsubscribe o

Re: [Tutor] Unzip a zipfile, then unzip the zipfiles within the original zip

2012-08-08 Thread Mark Lawrence
On 08/08/2012 16:34, Ramchandra Apte wrote: Sorry. This is my first time using a mailing list! Any idea how to send a message without replying? ___ Tutor maillist - Tutor@python.org To unsubscribe or change subscription options: http://mail.python.

Re: [Tutor] Unzip a zipfile, then unzip the zipfiles within the original zip

2012-08-08 Thread Ramchandra Apte
Sorry for sending the email twice :-( . I just ued 'Reply All' in Gmail. But now I know you shouldn't use it. ___ Tutor maillist - Tutor@python.org To unsubscribe or change subscription options: http://mail.python.org/mailman/listinfo/tutor

Re: [Tutor] Unzip a zipfile, then unzip the zipfiles within the original zip

2012-08-08 Thread Ramchandra Apte
Sorry. This is my first time using a mailing list! Any idea how to send a message without replying? ___ Tutor maillist - Tutor@python.org To unsubscribe or change subscription options: http://mail.python.org/mailman/listinfo/tutor

Re: [Tutor] Unzip a zipfile, then unzip the zipfiles within the original zip

2012-08-08 Thread Mark Lawrence
On 08/08/2012 04:15, Ramchandra Apte wrote: I think a shell command (but I think you are using Windows) would be best for this task. You can unzip the file in memory and then unzip the smaller ones. There is no need to create any files. [snip] Tutor maillist - Tutor@python.org To unsubscribe

Re: [Tutor] Unzip a zipfile, then unzip the zipfiles within the original zip

2012-08-08 Thread Peter Otten
Gregory Lund wrote: > Not too sure on protocol either, sorry if this email is out of line. You have to hit [Reply all] in your email client for your answer to go to the list instead of just me. When you answer a post put your reply after the relevant part of the quoted post (don't "top-post").

Re: [Tutor] Unzip a zipfile, then unzip the zipfiles within the original zip

2012-08-08 Thread Albert-Jan Roskam
> >I think a shell command (but I think you are using Windows) would be best for >this task. >You can unzip the file in memory and then unzip the smaller ones. >There is no need to create any files.  >[snip] >> >>===> This seems to do the trick: >>http://code.activestate.com/recipes/465649-file-