Tkinter有效吗?

时间:2011-05-01 07:34:56

标签: python python-3.x tkinter

我已经从http://wiki.python.org/moin/TkInter安装了Python 3.2。

第3步 - Tkinter工作吗?

在Python提示符处尝试以下命令:

  
    
      

Tkinter._test()#note _core中的下划线。此外,如果您使用的是Python 3.1,请尝试使用tkinter._test()。       这应该会弹出一个带有两个按钮的小窗口。

    
  
>>> Tkinter._test
Traceback (most recent call last):
  File "<pyshell#4>", line 1, in <module>
    Tkinter._test
NameError: name 'Tkinter' is not defined

>>> tkinter._test
<function _test at 0x00000000028FD2C8>

但是,没有'带2个按钮的窗口'。 想法?

3 个答案:

答案 0 :(得分:6)

运行tkinter._test()。注意括号。

答案 1 :(得分:0)

使用:

tkinter._test()

注意括号 - 调用函数时它们是必不可少的。如果您正在使用参数调用函数。

要测试模块是否已正确导入(这适用于任何模块),请尝试:

import [module name here]
print([module name here])

一个例子是:

import tkinter
print(tkinter)

答案 2 :(得分:0)

在示例代码中,您忘记了在测试后包含括号。测试确实是一个函数,因此需要括号:

tkinter._test()