Chris B.

1,342
reputation
189 views

Registered User

name Chris B.
member for 1 year
seen Nov 18 at 19:37
website
location Chicago
age 36
I write code. I run statistics. I sleep, and sometimes, I dream.
Oct
21
accepted What is a good way to test if a Key exists in Python Dictionary
Oct
21
comment What is a good way to test if a Key exists in Python Dictionary
I fully agree. But if you only need to know if a key exists, or you need to distinguish between a case where the key is defined and a case where you are using a default, in is the best way of doing it.
Oct
21
answered What is a good way to test if a Key exists in Python Dictionary
Sep
23
comment How do I get this program to start over in python?
You're actually not talking about recursion, where the result of an operation depends on repeating the operation with, one assumes, a different input. Factorials are defined recursively (where n! = n*(n-1)!).
Sep
23
answered How do I get this program to start over in python?
Sep
22
revised With python.multiprocessing, how do I create a proxy in the current process to pass to other processes?
Added "serve_forever" method mention
Sep
22
comment Reading a float from string
I wasn't using "precision" in the strictest sense, but in the "significant digits to the right of the decimal" sense. And while the Python Decimal class may be a decimal floating point system, the fact is it does support "exact unrounded decimal arithmetic". And it seems that an internal variable to track the precision is exactly what the original poster was looking for.
Sep
22
comment Reading a float from string
This is a substantially different question than you originally asked.
Sep
22
revised Reading a float from string
Changed zeros to match question
Sep
22
answered Reading a float from string
Sep
22
asked With python.multiprocessing, how do I create a proxy in the current process to pass to other processes?
Sep
16
awarded  Yearling
Sep
14
accepted Nice Python Decorators
Sep
11
answered Nice Python Decorators
Aug
8
asked How can I create a custom QLayout (and ensure it’s updated) in PyQt?
Aug
3
asked How do I respond to an internal drag-and-drop operation using a QListWidget?
Jun
17
comment Hidden features of Python
Yes, such "cute" features as nested scopes and generators are better left to those who know what they're doing. And anyone who wants to be compatible with future versions of Python. For nested scopes and generators, "future versions" of Python means 2.2 and 2.5, respectively. For the with statement, "future versions" of Python means 2.6.