Forum: Python Apr 6th, 2009 |
| Replies: 3 Views: 585 You might find this is interesting: http://www.paulbutler.org/archives/python-debugging-with-decorators/ |
Forum: Python Apr 25th, 2008 |
| Replies: 2 Views: 1,049 Please use [code=python] tag to enclose your code, so we can see the indent. |
Forum: Python Apr 25th, 2008 |
| Replies: 1 Views: 432 The following hints might be helpful:
0. raw_input will ask user for input.
1. eval will construct a list from user input (string) for you very easily.
2. Since for loop is required, range... |
Forum: Python Apr 13th, 2008 |
| Replies: 4 Views: 530 If I remembered right, there are some working sample setup.py's (console app, gui app, windows services app, etc.) installed with py2exe.
Take a look into py2exe's directory, you might find... |