1. Introduction to tkinter

1.1. Home pages:


1.2. Key references:


1.3. Version checks

Check python verion:
import sys

print(sys.version)

Chekc the Tk version:
Tcl/Tk version 8.6.13 is installed with python 3.12.
import tkinter

print(tkinter.Tcl().eval('info patchlevel'))