[Tutor] Syntax Error? Variable Scope?

2006-11-02 Thread Chuck Coker
"import string" and it doesn't like that. I'm sure I'm missing something very basic here due to my newness with Python. Can anyone offer any insights? Thanks, Chuck -- == Chuck Coker, Sof

Re: [Tutor] Starting over with Python

2006-12-15 Thread Chuck Coker
;python" +"cryptography". (0.09 seconds) Chuck -- ====== Chuck Coker, Software Developer[EMAIL PROTECTED] Tyrell Software Corporation http://www.tyrell.com Office: +1 949 458 1911

Re: [Tutor] Is Python the language for me?

2007-01-15 Thread Chuck Coker
you write will be code that you will write over and over. Try to keep your pieces small and generic, except, or course, where you need to do a specific step that applies to your current project only. Good luck on your project. Chuck -- ==

Re: [Tutor] Optimal solution in dealing with huge databases in python

2007-01-25 Thread Chuck Coker
use it? -- == Chuck Coker, Software Developer[EMAIL PROTECTED] Tyrell Software Corporation http://www.tyrell.com Office: +1 949 458 1911 x 203Cell: +1 714 32

Re: [Tutor] How many loops does "break" jump out of?

2007-02-23 Thread Chuck Coker
ore_stuff(); >> } >> >> do_final_stuff(); >> >> one: continue_program(); > > I'd put this code in a function, replace the goto one with return, and > put a call to the function in place of the code. > > def tests(): > if test_1: > etc etc > if