Re: Yet another GUI toolkit question...

2006-02-11 Thread Florian Nykrin
Hi Kevin! I have no experience with Tkinter, but I did some small GUIs with wxPython and PyGTK. wxPython works very well on Windows, but on Linux (Ubuntu/Debian in my case) it is very difficult to work with and buggy. PyGTK-Applications on the other hand maybe do not look totally like Windows-

Re: Learning Python

2006-02-05 Thread Florian Nykrin
Hi Byte! Your code should look like this: x = raw_input('Please enter your name: ') if x == 'myself': print 'OK' Because myself should be a string and not a variable name, you have to put it in quotes. Regards, Florian. -- http://mail.python.org/mailman/listinfo/python-list