[Tutor] win32api & win32gui help

2014-02-28 Thread Joe Bennett
Looking for a good simple remedial course on getting my python script to talk to a Windows program. The author of the windows program has documented the api here: http://www.logger32.net/help/Logger32/Using%20the%20Logger32%20External%20Interface.htm I'm struggling to understand how to implement

[Tutor] Opening C++ binary files

2010-09-21 Thread Joe Bennett
I have some binary files created by a program written in C++... Anyone have any experience with this and willing to share? ACSII test is easy, but not sure how the rest is encoded -Joe ___ Tutor maillist - Tutor@python.org To unsubscribe or

[Tutor] Class understanding

2009-11-24 Thread Joe Bennett
Hi all... Have been attempting to understand classes... Been getting along without them for a while now and feel it's time to jump in What I want to do it start a log with the logging module... I have this working without classes, but want to try... Here is a snippet of the code that I am hack

Re: [Tutor] Processing rows from CSV

2009-11-21 Thread Joe Bennett
Doing this a lot in my daily activities... your example > For row in reader: >If row['foo'] == 'something' : >do this etc. 'row' will return a row within 'reader'... You can then pick through the headers like "foo" and see what is there... I have some compare scripts that do exactly

Re: [Tutor] Online class/education for Python?

2008-07-20 Thread Joe Bennett
What time where the classes? Web site seems to be missing that info... -Joe On Sun, Jul 20, 2008 at 1:08 AM, Dick Moores <[EMAIL PROTECTED]> wrote: > At 02:45 PM 7/19/2008, David wrote: >> >> Steve Poe wrote: >>> >>> Anyone taken or know of any online classes >>> teaching Python? I know O'Reil

[Tutor] Boolean math question

2005-10-22 Thread Joe Bennett
Anyone know of a good explanation of either how to perform boolean math in Python? What I am trying to do is AND two numbers together: e = 51 AND 15 00110011 0011 In this case the result should be e = 3... Ideas? -Joe _