You guys are great :) thanx for the plenty answers and suggestions; I've
made my search through a little more and decided to start coding the
same app first with pygtk and second with wxpython.. and perhaps later
with pyqt.
--
http://mail.python.org/mailman/listinfo/python-list
Hello
I've recently learnt python and I do love it! I congratulate all those
geeks who produce this nice language; well, because I could be called a
nearby newbee I've decided to improve my abilities by writing my own
nice editor with python; so I've to choose among all those GUI toolkit's
ava
Which one is better w.r.t. memory allocation but also w.r.t. speed:
## 1.1 ##
def forloop(a,b):
for idx in range(a,b):
## ..
## do something
## ..
## 1.2 ##
def whileloop(a,b):
idx = a
while idx < b:
## ..