I'm a noob with Python. I read the wxPython Linux Tutorial.
and found that there is a '&' in front of the lines, for example:
Then we add some items into the menu. This can be done in two ways. file.Append(101, '&Open', 'Open a new document') file.Append(102, '&Save', 'Save the document')
and
Menus are then added into the menubar. menubar.Append(file, '&File') menubar.Append(edit, '&Edit')
What is the meaning of & ?
Thanks for the help!
source share