- Tkinter GUI Application Development Cookbook
- Alejandro Rodas de Paz
- 182字
- 2021-08-27 19:43:57
Introduction
Thanks to its clear syntax and the wide ecosystem of libraries and tools, Python has become a popular and general-purpose programming language. From web development to Natural Language Processing (NLP), you can easily find an open source library that fits the need of your application domain, and in the last instance, you can always use any of the modules included in the Python standard library.
The standard library follows the "batteries-included" philosophy, which means that it contains a large collection of utilities: regular expressions, mathematical functions, networking, and so on. The standard Graphical User Interface (GUI) package of this library is Tkinter, a thin object-oriented layer on top of Tcl/Tk.
Starting from Python 3, the Tkinter module was renamed to tkinter (with a lowercase t). It also affects to the tkinter.ttk and tkinter.tix extensions. We will dive into the tkinter.ttk module in the last chapter of this book, since the tkinter.tix module is officially deprecated.
In this chapter, we will explore several patterns for some basic classes of the tkinter module and some methods that are common to all widget subclasses.
- 數據庫系統原理及MySQL應用教程(第2版)
- Raspberry Pi for Python Programmers Cookbook(Second Edition)
- 軟件項目估算
- PWA入門與實踐
- Oracle從新手到高手
- Responsive Web Design with HTML5 and CSS3
- Python機器學習經典實例
- 大學計算機基礎實驗指導
- Learning R for Geospatial Analysis
- Go語言精進之路:從新手到高手的編程思想、方法和技巧(2)
- Practical Microservices
- 你真的會寫代碼嗎
- SQL Server實例教程(2008版)
- HTML5與CSS3權威指南
- 計算機系統解密:從理解計算機到編寫高效代碼