Forum: Python May 15th, 2008 |
| Replies: 4 Views: 8,091 Perfect. Thanks a ton, G-Do! |
Forum: Python May 15th, 2008 |
| Replies: 4 Views: 8,091 So this should be a really easy one, but i've spent a few hours searching and can't find anything that explicitly states how to do this. All i want to do is see the column names for a particular... |
Forum: Python May 14th, 2008 |
| Replies: 7 Views: 928 Thanks a ton for the help and great example, woooee & jrcagle! i did a little google'ing since i have absolutely no experience with sql, but it does seem like a really good fit for this type of... |
Forum: Python May 13th, 2008 |
| Replies: 7 Views: 928 i just tried the dictionary of classes approach and it didn't work... I also added some more printing. Here's the snippet and output:
for p in pressures:
q70in.resetKeyword(... |
Forum: Python May 13th, 2008 |
| Replies: 7 Views: 928 i'll definitely give the dictionary of classes a try, but i still think i might be missing something...
'results[p] = {}' should only initialize that key's value since every value of 'p' is... |
Forum: Python May 13th, 2008 |
| Replies: 7 Views: 928 I am trying to add entries to a dictionary with the following loop:
for p in pressures:
q70in.resetKeyword( "expansionRatio", p )
q70in.writeInput( prefix + tempInput ) ... |