繁体   English   中英

为什么我需要从 tkinter 模块显式导入字体模块,即使使用“*”导入了完整模块?

[英]Why do I need to explicitly import the font module from the tkinter module even if have imported the full module using “*”?

我试图运行给 python 片段:

from tkinter import *
from tkinter import font
root = Tk()
list_fonts = list(font.families())
for i in list_fonts:
    print(i)
root.mainloop()

我得到的输出为:

Sitka Display
Sitka Banner
Nirmala UI Semilight
Leelawadee UI
Gadugi
Microsoft New Tai Lue
DokChampa
Segoe UI
Calibri
Miriam
Angsana New
Iskoola Pota
Kartika
Segoe UI Semilight
Vijaya
Nirmala UI
Mongolian Baiti
Microsoft YaHei
@Microsoft YaHei
Microsoft YaHei UI
@Microsoft YaHei UI
Vani
Arial Black
IrisUPC
Batang
@Batang
BatangChe
@BatangChe
Gungsuh
@Gungsuh
GungsuhChe
@GungsuhChe
Gautami
Segoe UI Black
Calibri Light
Cambria
Rod
Georgia
Verdana
Symbol
Euphemia
Raavi
Corbel
Shruti
Consolas
Segoe UI Semibold
Simplified Arabic
Cambria Math
DaunPenh
Nyala
Constantia
Yu Gothic
@Yu Gothic
CordiaUPC
Khmer UI
Aharoni
Microsoft Uighur
Times New Roman
Times New Roman CYR
Times New Roman TUR
Times New Roman CE
Times New Roman Baltic
Times New Roman Greek
Segoe Script
Candara
Ebrima
DilleniaUPC
MS Mincho
@MS Mincho
MS PMincho
@MS PMincho
Browallia New
Segoe UI Light
Segoe UI Emoji
Aldhabi
DFKai-SB
@DFKai-SB
SimHei
@SimHei
Lao UI
Courier New
Courier New CYR
Courier New TUR
Courier New CE
Courier New Greek
Courier New Baltic
Kalinga
Microsoft PhagsPa
Tahoma
EucrosiaUPC
KaiTi
@KaiTi
SimSun
@SimSun
NSimSun
@NSimSun
Meiryo
@Meiryo
Meiryo UI
@Meiryo UI
Sylfaen
Tunga
Urdu Typesetting
Microsoft YaHei Light
@Microsoft YaHei Light
Microsoft YaHei UI Light
@Microsoft YaHei UI Light
Webdings
Plantagenet Cherokee
Gabriola
MS Gothic
@MS Gothic
MS UI Gothic
@MS UI Gothic
MS PGothic
@MS PGothic
Gulim
@Gulim
GulimChe
@GulimChe
Dotum
@Dotum
DotumChe
@DotumChe
Lucida Sans Unicode
Andalus
Leelawadee
FangSong
@FangSong
Yu Mincho Demibold
@Yu Mincho Demibold
David
Miriam Fixed
Impact
Levenim MT
Segoe Print
Estrangelo Edessa
Leelawadee UI Semilight
Microsoft JhengHei
@Microsoft JhengHei
Microsoft JhengHei UI
@Microsoft JhengHei UI
Narkisim
MingLiU-ExtB
@MingLiU-ExtB
PMingLiU-ExtB
@PMingLiU-ExtB
MingLiU_HKSCS-ExtB
@MingLiU_HKSCS-ExtB
Yu Mincho Light
@Yu Mincho Light
Latha
Microsoft Sans Serif
FrankRuehl
MingLiU
@MingLiU
PMingLiU
@PMingLiU
MingLiU_HKSCS
@MingLiU_HKSCS
Myanmar Text
Yu Gothic Light
@Yu Gothic Light
Javanese Text
Microsoft Himalaya
Yu Mincho
@Yu Mincho
Lucida Console
Arabic Typesetting
Microsoft Yi Baiti
MV Boli
Wingdings
MT Extra
Arial Unicode MS
@Arial Unicode MS
Century
Wingdings 2
Wingdings 3
Book Antiqua
Century Gothic
Haettenschweiler
MS Outlook
Tempus Sans ITC
Pristina
Papyrus
Mistral
Lucida Handwriting
Kristen ITC
Juice ITC
French Script MT
Freestyle Script
Bradley Hand ITC
Arial Narrow
Garamond
Monotype Corsiva
Algerian
Baskerville Old Face
Bauhaus 93
Bell MT
Berlin Sans FB
Bernard MT Condensed
Bodoni MT Poster Compressed
Britannic Bold
Broadway
Brush Script MT
Californian FB
Centaur
Chiller
Colonna MT
Cooper Black
Footlight MT Light
Harlow Solid Italic
Harrington
High Tower Text
Jokerman
Kunstler Script
Lucida Bright
Lucida Calligraphy
Lucida Fax
Magneto
Matura MT Script Capitals
Modern No. 20
Niagara Engraved
Niagara Solid
Old English Text MT
Onyx
Parchment
Playbill
Poor Richard
Ravie
Informal Roman
Showcard Gothic
Snap ITC
Stencil
Viner Hand ITC
Vivaldi
Vladimir Script
Wide Latin
Tw Cen MT
Tw Cen MT Condensed
Script MT Bold
Rockwell Extra Bold
Rockwell Condensed
Rockwell
Rage Italic
Perpetua Titling MT
Perpetua
Palace Script MT
OCR A Extended
Maiandra GD
Lucida Sans Typewriter
Lucida Sans
Imprint MT Shadow
Goudy Stout
Goudy Old Style
Gloucester MT Extra Condensed
Gill Sans Ultra Bold Condensed
Gill Sans Ultra Bold
Gill Sans MT Condensed
Gill Sans MT
Gill Sans MT Ext Condensed Bold
Gigi
Franklin Gothic Medium Cond
Franklin Gothic Heavy
Franklin Gothic Demi Cond
Franklin Gothic Demi
Franklin Gothic Book
Forte
Felix Titling
Eras Medium ITC
Eras Light ITC
Eras Demi ITC
Eras Bold ITC
Engravers MT
Elephant
Edwardian Script ITC
Curlz MT
Copperplate Gothic Light
Copperplate Gothic Bold
Century Schoolbook
Castellar
Calisto MT
Bookman Old Style
Bodoni MT Condensed
Bodoni MT Black
Bodoni MT
Blackadder ITC
Arial Rounded MT Bold
Agency FB
Bookshelf Symbol 7
MS Reference Sans Serif
MS Reference Specialty
Berlin Sans FB Demi
Tw Cen MT Condensed Extra Bold

以及 tkinter 窗口

但是当我尝试执行下面给出的代码段时:

from tkinter import *
root = Tk()
list_fonts = list(font.families())
for i in list_fonts:
    print(i)
root.mainloop()

我收到一个错误:

Traceback (most recent call last):
  File "fonts.py", line 4, in <module>
    list_fonts = list(font.families())
NameError: name 'font' is not defined

我的疑问是为什么我明确需要从 tkinter 导入字体。 如您所见,我已经使用第 1 行中的“*”符号导入了字体模块。请举例说明,以便我了解这是如何发生的。

import *不会导入所有内容。 它不导入所有内容的一种方式是它不会自动搜索 package 的子模块 fonttkinter包的子模块,如果它还没有被其他导入加载, from tkinter import * tkinter.font from tkinter import *将找不到tkinter.font

答案很简单:Python 不会自动导入所有模块层次结构,仅仅因为您导入了顶级层次结构。 那些这样做的人(例如 os,这将使 os.path 可用)必须明确地为此编写代码。

只需添加import tkinter.font ,它就可以工作

但是,由于 IDLE 使用 tkinter 本身,它已经导入了 tkinter.font,因此您认为没有导入就可以逃脱,我希望这会有所帮助:)

模块可以有子模块和/或函数、变量等。 from <module> import *取决于模块的实现方式。 大多数模块不会自动导入子模块。
在这种情况下, tkinter是主模块, font是一个子模块, tkinter 没有被设计为自动导入所有子模块。 因此,当您执行from tkinter import * ,您将获取所有函数和变量,而不是子模块。 子模块必须显式导入才能使用。 您可以输入:

from tkinter import *
from tkinter import font

或者你也可以输入:

import tkinter  # actually not needed since the below "does both"
import tkinter.font

区别在于您是否要使用font.Font(...tkinter.font.Font(...

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM