📅  最后修改于: 2020-10-16 06:32:42             🧑  作者: Mango
在Tk中,我们将某些变量归类为特殊变量,并且它们具有预定义的用法/功能。特殊变量的列表在下面列出。
Sr.No. | Special Variable & Description |
---|---|
1 |
tk_library Used for setting the location of standard Tk libraries. |
2 |
tk_patchLevel Refers to the current patch level of the Tk interpreter. |
3 |
tk_strictMotif When non-zero, Tk tries to adhere to Motif look-and-feel as closely as possible. |
4 |
tk_version Displays the Tk version. |
以上特殊变量对Tk解释器具有特殊含义。
让我们看一下特殊变量的例子。
#!/usr/bin/wish
puts $tk_version
运行该程序时,您将获得类似的输出,如下所示。
8.5
#!/usr/bin/wish
puts $tk_library
运行该程序时,您将获得类似的输出,如下所示。
/Library/Frameworks/Tk.framework/Versions/8.6/Resources/Scripts
#!/usr/bin/wish
puts $tk_patchLevel
运行该程序时,您将获得类似的输出,如下所示。
8.6.1
#!/usr/bin/wish
puts $tk_strictMotif
运行该程序时,您将获得类似的输出,如下所示。
0