内容简介:翻译自:https://stackoverflow.com/questions/24725920/why-import-and-then-ttk
我的理解是tkinter程序的标准设置就像这样开始:
from tkinter import * from tkinter import ttk
我知道tkinter是一个包,但是如果我已经用*导入了所有内容,为什么我还需要导入ttk?如果我拿出第二行并尝试引用ttk,为什么会出现错误?
当您从some_package import *执行操作时,python将导入包选择导出的任何内容.它选择导出的内容可能是实际存储在包文件夹中的一部分.这是为什么?没有特别的原因,这就是包裹作者决定如何做事.
有关导出内容的信息在程序包内的__init__.py文件中定义(在本例中为 tkinter/ init .py ).如果查看该文件,您会注意到它不会导入ttk本身,因此不会导出ttk,因此无法使用通配符导入导入.
再说一次,除了tkinter和ttk的作者选择做事之外,没有特别的理由.
有关包装机制的更多信息,请参阅 python 教程的包装部分( https://docs.python.org/3/tutorial/modules.html#packages )
导入tkinter的更好方法
您可能认为它是标准的,因为许多教程都是这样做的,但这通常是一种不好的做法. IMO的更好方法是给tkinter库一个明确的名称:
# python 3.x import tkinter as tk from tkinter import ttk # python 2.x import Tkinter as tk import ttk
这将使您的代码更容易阅读,因为您必须明确说明您正在使用的 工具 包:
b1 = tk.Button(...) # uses a standard tk button b2 = ttk.Button(...) # uses a ttk button
我认为没有任何其他理由可以做到这一点.每次调用tkinter函数时,执行全局导入会为您节省几个字节,但代价是清晰度.此外,它强化了一种可能会影响您使用其他库的不良做法.
真正的权威,IMO,是 PEP8 ,这就是这个问题:
Wildcard imports (from import *) should be avoided as they make it unclear which names are present in the namespace, confusing both readers and many automated tools. There is one defensible use case for a wildcard import, which is to republish an internal interface as part of a public API (for example, overwriting a pure Python implementation of an interface with the definitions from an optional accelerator module and exactly which definitions will be overwritten isn’t known in advance).
翻译自:https://stackoverflow.com/questions/24725920/why-import-and-then-ttk
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网
猜你喜欢:- ASP.NET Aries 高级开发教程:Excel导入之多表高级导入配置(中)
- 将Excel文件导入数据库(POI+Excel+MySQL+jsp页面导入)第一次优化
- [MySQL]备份和导入
- Android Studio 导入源码
- Python导入订单是否重要
- hive 导入 mysql文本
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
笨办法学Python 3
[美]泽德 A. 肖 / 王巍巍 / 人民邮电出版社 / 2018-6-1 / CNY 59.00
本书是一本Python入门书,适合对计算机了解不多,没有学过编程,但对编程感兴趣的读者学习使用。这本书以习题的方式引导读者一步一步学习编程,从简单的打印一直讲到完整项目的实现,让初学者从基础的编程技术入手,最终体验到软件开发的基本过程。本书是基于Python 3.6版本编写的。 本书结构非常简单,除“准备工作”之外,还包括52个习题,其中26个覆盖了输入/输出、变量和函数3个主题,另外26个......一起来看看 《笨办法学Python 3》 这本书的介绍吧!