Re: Which GUI toolkit is THE best?

2006-03-12 Thread invitro81
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

Which GUI toolkit is THE best?

2006-03-10 Thread invitro81
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

Memory allocation in for loops

2006-02-26 Thread invitro81
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: ## ..