What is the point of using the ampersand in wxPython? I see it in almost all the tutorials. For instance, they use:
menubar.Append(fileMenu, '&File')
instead of:
menubar.Append(fileMenu, 'File')
What is the difference? Should I always use the ampersand for naming?
Btw I found these examples from this famous wxPython Tutorial: http://zetcode.com/wxpython/menustoolbars/