Forum: Python Sep 6th, 2007 |
| Replies: 11 Views: 5,769 German forum but with lots of links to editors and IDEs for python.
http://www.python-forum.de/topic-3544.html |
Forum: Python Sep 6th, 2007 |
| Replies: 7 Views: 4,764 >>> ' String '.strip()
'String'
You may also want to look at the module csv.
http://docs.python.org/lib/module-csv.html
HTH |
Forum: Python Aug 14th, 2007 |
| Replies: 9 Views: 1,358 How to Think Like a Computer Scientist
http://www.ibiblio.org/obp/thinkCSpy/
IMHO the best programming tutorial I've done so far. |
Forum: Python Aug 13th, 2007 |
| Replies: 6 Views: 1,051 I suggest you learn both. :-) |
Forum: Python Aug 9th, 2007 |
| Replies: 6 Views: 1,051 Did You consider writing a Greasemonkey script? That is a rather simple way so enhance a webpages functionality. |
Forum: Python Aug 2nd, 2007 |
| Replies: 3 Views: 1,183 In other words: what have you tried so far? |
Forum: Python Jul 6th, 2007 |
| Replies: 3 Views: 887 Well I was referring to the tree example, but your explanation of the problem reminded me of the "guess the animal" game (also in appendix d). |
Forum: Python Jul 6th, 2007 |
| Replies: 3 Views: 887 Looks like you want to implement the choices as a tree. http://www.ibiblio.org/obp/thinkCSpy/index.html has a good example in appendix D and is a great tutorial in general.
HTH |
Forum: Python Aug 16th, 2006 |
| Replies: 3 Views: 2,237 >>> Dispatch.__doc__
'Creates a Dispatch based COM object.\n '
>>> DispatchEx.__doc__
'Creates a Dispatch based COM object on a specific machine.\n '
Looks like the latter is for remote... |
Forum: Python Aug 16th, 2006 |
| Replies: 3 Views: 2,237 I could find DispatchEx neither in the python documentation nor in the docs to PythonWin. Must be from some other module You are using. |
Forum: Python Aug 9th, 2006 |
| Replies: 7 Views: 2,369 True! Sometimes I'm being ignorant enough to just give my classes german names. They usually don't collide but are completely incomprehesible for non-german programmers. Adding "my" doesn't seem to... |
Forum: Python Aug 9th, 2006 |
| Replies: 7 Views: 2,369 Hi Ginner,
I just wanted to indicate, that there is no error in the code itself and I have experienced problems with PythonWin like that, where some old code was still in the memory (for example... |
Forum: Python Aug 7th, 2006 |
| Replies: 7 Views: 2,369 I put the code in one single file and it worked (well at least it gave me no error message). Try to reload(Queue). Modules are only imported once by default. |
Forum: Python Jul 24th, 2006 |
| Replies: 3 Views: 2,741 Sorry, can't confirm that. A typical result from my machine (Python 2.4) looks like this.
Function while1() takes 21.923 microseconds/pass
Function for1() takes 23.813 microseconds/pass... |