- Tkinter GUI Programming by Example
- David Love
- 185字
- 2021-08-27 18:49:06
Conventions used
There are a number of text conventions used throughout this book.
CodeInText: Indicates code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles. Here is an example: "To specify the position within the grid, the row, and column keywords are used."
A block of code is set as follows:
self.label_text = tk.StringVar()
self.label_text.set("Choose One")
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
def say_hello(self):
message = "Hello there " + self.name_entry.get()
msgbox.showinfo("Hello", message)
Any command-line input or output is written as follows:
>>> import tkinter
>>> tkinter.TkVersion
Bold: Indicates a new term, an important word, or words that you see onscreen. For example, words in menus or dialog boxes appear in the text like this. Here is an example: "The last thing to do is to create the method that will be responsible for placing it into our Tools menu."
- LabVIEW Graphical Programming Cookbook
- Python自動化運維快速入門
- 我的第一本算法書
- ASP.NET Core 2 and Vue.js
- oreilly精品圖書:軟件開發者路線圖叢書(共8冊)
- TypeScript圖形渲染實戰:基于WebGL的3D架構與實現
- Mastering Rust
- Hands-On Swift 5 Microservices Development
- SQL Server 2016數據庫應用與開發
- 軟件測試技術指南
- Lighttpd源碼分析
- Mastering Data Mining with Python:Find patterns hidden in your data
- Getting Started with Python and Raspberry Pi
- Practical Predictive Analytics
- Java高手是怎樣煉成的:原理、方法與實踐