Forum: Python Sep 6th, 2007 |
| Replies: 11 Views: 5,813 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,800 >>> ' 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,359 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,052 I suggest you learn both. :-) |
Forum: Python Aug 9th, 2007 |
| Replies: 6 Views: 1,052 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,186 In other words: what have you tried so far? |
Forum: Python Jul 6th, 2007 |
| Replies: 3 Views: 889 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: 889 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: Mac Rumors and Reports May 31st, 2007 |
| Replies: 2 Views: 2,397 Nothing but hype, if you ask me. What else but news would anyone want to watch on a mini screen. What is the value of a mobile broadcast TV service? |
Forum: Internet Marketing Job Offers May 4th, 2007 |
| Replies: 3 Views: 2,894 OT: Why is "apple" the top tag for this entry? |
Forum: Internet Marketing Job Offers May 3rd, 2007 |
| Replies: 3 Views: 2,894 I don't know what makes Pandora so unique? I live in Germany and I didn't even know Pandora until today. I'm on last.fm and from discussions on this topic it seems like there's a bunch more webradios... |
Forum: *nix Software Apr 26th, 2007 |
| Replies: 15 Views: 9,760 OK, sorry, didn't check. Well it was first entry in the "related forum threads" column of the "Red Hat, the GPL, and the Boon (and Bane) of Open-Source" article. On the other hand: isn't storing... |
Forum: *nix Software Apr 25th, 2007 |
| Replies: 15 Views: 9,760 Sorry folks, but personally I think when someone has a problem while using one distro, suggesting a different distro should be considered trolling. You could as well say "get a Mac". Doesn't solve... |
Forum: Geeks' Lounge Mar 22nd, 2007 |
| Replies: 14 Views: 2,688 |
Forum: Windows Vista and Windows 7 Feb 7th, 2007 |
| Replies: 1 Views: 3,267 Well, not reaching a standard has never been a problem for MS. They just declare a new one. :twisted:
SCNR |
Forum: Geeks' Lounge Sep 18th, 2006 |
| Replies: 28 Views: 5,231 Pops and crackles are really annoying, but the dynamics are so much better on vinyl. Still I think vinyl is dead. Needs too much care. I miss the big covers, though. |
Forum: Geeks' Lounge Aug 19th, 2006 |
| Replies: 28 Views: 5,231 Oh yeah! I'm a music geek! My right brain hemisphere needs something to tinker with as well :)
I've been playing the bass guitar for 20 years now. (Contrary to my avatar, I know) I'm not into any... |
Forum: Python Aug 16th, 2006 |
| Replies: 3 Views: 2,252 >>> 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,252 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,386 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,386 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,386 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,754 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... |