On Sun, Aug 1, 2010 at 15:00, Richard D. Moores <rdmoo...@gmail.com> wrote:
> On Sun, Aug 1, 2010 at 14:44, Daniel Sarmiento <dsarmien...@gmail.com> wrote:
>>

>> Without knowing what your code does, I think it will be something like:
>>
>> try:
>>     F_unused = open(path1, 'rb')
>>     F_used = open(path2, 'rb')
>> except IOError:
>>     print("no")
>>     .....
>> else:
>>     unused_ints = pickle.load(F_unused)

OK. Did that. And it works: <http://tutoree7.pastebin.com/EDgwU6Ac>.
Now what? Am I done? Or should I break it up into a bunch of
functions, each one doing just one thing?

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

Reply via email to