无法分配给ErrorExpression

时间:2018-05-02 12:26:03

标签: python-3.x wxpython

我正在使用wxPython,我正在尝试派生一个类,并使用默认值,如下所示:

import wx

def TileWindow(wx.ScrolledCanvas):
    def __init__(self, parent, id = wx.ID_ANY, pos = wx.DefaultPosition,
                 size = wx.DefaultSize, style = wx.HSCROLL | wx.VSCROLL,
                 name = "tileWindow"):
        wx.ScrolledCanvas.__init__(self, parent, id, pos,
                                         size, style, name)

问题在于“style = wx.HSCROLL | wx.VSCROLL”。 (wx.HSCROLL和wx.VSCROLL都是int类型。)但对于这个表达式,我得到一个错误,上面写着“无法分配给二元运算符”。

这是什么,我该如何解决?

0 个答案:

没有答案