Python Tkinter Go
Introduction
TKinter is a simple GUI library for Python. It can create desktop program easily using Python.
Environment:
Python 3.6.0Windows 10
Error:
ModuleNotFoundError: No module named 'Tkinter'In Python 3.6.0 you will name Tkinter as tkinter.
Test:
In the Python prompt you can test by this command:
>>> import tkinter
>>> tkinter._test()
It will show a test window.
Example:
1. Simple window
2. Radio button test
3. Understand Grid Geometry
# File : Grid Geometry Test
Comments
Post a Comment