Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Installation on Ubuntu¶
sudo apt-get install bat
Notice that the installed executable is batcat
(instead of bat
)!
Usage¶
Tips on Windows Terminal
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
The Checkbutton Widget in Tkinter
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
-
ttk.Checkbutton
is preferred totk.Checkbutton
. -
It seems to me that the
Checkbutton.bind
doesn't work. However, specifying a callback function using thecommand
option when creating a Checkbutton still …
The Entry Widget in Tkinter
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
-
ttk.Entry
is preferred overtk.Entry
. -
ttk.Entry
/tk.Entry
does not have aset
method to set the text directly. Instead, you have to first delete the text and …
The Label Widget in Tkinter
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
General Tips
ttk.Label
is preferred overtk.Label
.
Change the Text of a Label
After creating a Label (whose text has already been set), there are 3 different approaches that …
Use Tkinter to Build GUI Applications in Python
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Installation
Tkinter should be available by default after Python is installed. However, please continue read if you encounter the following error.
import _tkinter # If this fails your Python may not be …