摘要: 1.关于from module import *的说明 在Python的教材和示例代码中,经常会看到 from xxx import * 的用法,但在实际产品的代码中,应该要避开这样的用法。Python模块中包含任何数量的类、函数、或者变量,但使用from xxx import * 用法调用模块时, 阅读全文
posted @ 2020-07-25 16:26 wqq2000happy 阅读(232) 评论(0) 推荐(0) 编辑
摘要: Creating a GUI the way we just did works okay for very small scripts, but a much more scalable approach is to subclass Tkinter widgets to create compo 阅读全文
posted @ 2020-07-25 16:24 wqq2000happy 阅读(151) 评论(0) 推荐(0) 编辑