What kind of programming do you do, Len?  I'm by no means an
expert Python programmer but I could look over a few of your programs
anyway.  <br>
<br>
I'd reccomend to always try to challenge yourself.  Don't just
program something one way just because it's all you know.  Take 20
minutes now and then to learn a new skill even if it breaks old coding
habits.<br>
<br>
Perhaps a simple anecdote would illustrate this.  My first year programming Python I was always building strings as:<br>
str1=var1 + 'greg' + somethingelse + "more chars" + anothervar<br>
<br>
However I always saw everyone else doing:<br>
str1="%s greg %s more chars %s" % (var1,somethingelse,anothervar)<br>
<br>
But I always figured it wasn't worth learning and my style was just
fine!  Finally one day I got curious and took the 20 minutes and
learned how the formatting operaters work.  It's really helped my
programming and just made my programs more intuitive.  And I find
it  more attractive to see the whole string almost as it will end
up instead of broken up by '+'s everywhere.<br>
<br>
I'm sure there are lots of examples of little things like that, that you can pick up here and there.<br>
<br>
-Greg<br>
<br>
<br>
<br><br><div><span class="gmail_quote">On 12 Oct 2005 18:44:26 -0700, <b class="gmail_sendername">LenS</b> <<a href="mailto:lsumnler@uniqueinsuranceco.com">lsumnler@uniqueinsuranceco.com</a>> wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Hello<br><br>Was wandering if there is any place where some one could go to get<br>mentoring on python coding.  I have started coding in python but I am<br>the only one in the shop  using it.  So there is no one around to look
<br>over my code give suggestions on improvement, in style, logic, easier<br>ways of doing things etc.  I am not really looking for hand holding as<br>much mentoring.  I have purchased about every python book out and have
<br>a list a mile long on my internet bookmarks.  I believe I have a good<br>grasp of the fundamentals procedurally and I am fighting my way through<br>OOP.  I am more at the stage of trying to pull things together into<br>
programs that perform real world tasks.  At one point I thought I saw<br>some place on one of the web site that did this kind of thing but I<br>can't find it now.<br><br>Any help or suggestions welcomed<br>Len Sumnler<br>
<br>--<br><a href="http://mail.python.org/mailman/listinfo/python-list">http://mail.python.org/mailman/listinfo/python-list</a><br></blockquote></div><br><br clear="all"><br>-- <br>Gregory Piņero<br>Chief Innovation Officer
<br>Blended Technologies<br>(<a href="http://www.blendedtechnologies.com">www.blendedtechnologies.com</a>)