2005年11月17日 星期四 10:39
最近看wxPython,有一个问题: import wxPython.wx as wx1 和直接 import wx as wx2 wx1和wx2有什么区别? 还有, class iFrame1(wx.Frame): pass class iFrame2(wxFrame): pass 这两个frame相同吗?
2005年11月17日 星期四 10:38
在 05-11-17,Du Jun<jdu at haiercct.com.cn> 写道: > 最近看wxPython,有一个问题: > import wxPython.wx as wx1 > 和直接 > import wx as wx2 > > wx1和wx2有什么区别? > 还有, > class iFrame1(wx.Frame): > pass > class iFrame2(wxFrame): > pass > 这两个frame相同吗? 一样。从2.4以后,wxPython的名字空间发生了变化,建议使用import wx的方式。 在导入wxPython的相关模块时它会自动对名字空间进行处理,两种方法都可以用。 -- I like python! My Blog: http://www.donews.net/limodou NewEdit Maillist: http://groups.google.com/group/NewEdit
2005年11月17日 星期四 10:56
wx1和wx2有什么区别? >>> import wxPython.wx as wx1 >>> import wxPython.wx as wx2 >>> wx1 == wx2 True >>> wx1 is wx2 True >>> #同一个东西。 On 11/17/05, Du Jun <jdu at haiercct.com.cn> wrote: > 最近看wxPython,有一个问题: > import wxPython.wx as wx1 > 和直接 > import wx as wx2 > > wx1和wx2有什么区别? > 还有, > class iFrame1(wx.Frame): > pass > class iFrame2(wxFrame): > pass > 这两个frame相同吗? > _______________________________________________ > Python中文技术讨论邮件列表 > 发言: 发邮件到 python-chinese at lists.python.cn > 订阅: 发送 subscribe 到 python-chinese-request at lists.python.cn > 退订: 发送 unsubscribe 到 python-chinese-request at lists.python.cn > 详细说明: http://python.cn/mailman/listinfo/python-chinese > -- ■■■■■■■■■■■■■■■■■■■■■ Myblog: http://blog.donews.com/ygao/ 自建的python学习论坛: http://groups.google.com/group/python_study ■■■■■■■■■■■■■■■■■■■■■
Zeuux © 2025
京ICP备05028076号