Re: Generating a unique identifier

2007-09-10 Thread stephen . lewitowski
On Sep 7, 1:03 pm, Steven D'Aprano <[EMAIL PROTECTED] cybersource.com.au> wrote: > I have an application that will be producing many instances, using them > for a while, then tossing them away, and I want each one to have a unique > identifier that won't be re-used for the lifetime of the Python se

Re: Python Newbie Suggestions

2007-05-17 Thread Stephen Lewitowski
Michael Tobis wrote: > I think > > http://www.diveintopython.org/ > > would be very suitable for you. > > mt > > > > I disagree here. The site was last updated in 2004; its out of date. For a newbie any material referenced should be current and include what is available in Python 2.5. --

Re: Python Newbie Suggestions

2007-05-15 Thread Stephen Lewitowski
[EMAIL PROTECTED] wrote: > I'm a mechanical engineer with little experience programming. I've > used C++ and machine language for getting micro-controllers to work > and thats about it. I work allot with software developers at my job > and can read C++ code pretty good (ie. I understand whats going

Testing GUI's

2007-04-20 Thread Stephen Lewitowski
Can any of you guy's out there point me to information on automating GUI's that use Tkinter. I would like to find out more and possibly get involved if there are any projects under development. Thanks in advance. Steve -- http://mail.python.org/mailman/listinfo/python-list

Re: Newbie question regarding string.split()

2007-04-20 Thread Stephen Lewitowski
kevinliu23 wrote: > Hey guys, > > So I have a question regarding the split() function in the string > module. Let's say I have an string... > > input = "2b 3 4bx 5b 2c 4a 5a 6" > projectOptions = (input.replace(" ", "")).split('2') > print projectOptions > > ['', 'b34bx5b', 'c4a5a6'] > > My que