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
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.
--
[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
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
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