I\'m new to Python and I\'m trying to create a simple GUI using Tkinter.
So often in many user interfaces, hitting the tab button will change the focus from one Tex
It is really simple in PyQt4 simply use this one single line below and you will be able to change focus by pressing tab button:
self.textEdit.setTabChangesFocus(True)