我正在尝试使用快速创建一个应用程序。我输入了一行代码来添加字体按钮。当我这样做时,我在终端中"快速运行"应用程序,并得到以下错误:
Traceback (most recent call last):
File "bin/simplenotepad", line 35, in <module>
import simplenotepad
File "/home/tscholz2001/simplenotepad/simplenotepad/__init__.py", line 12, in <module>
from simplenotepad import SimplenotepadWindow
File "/home/tscholz2001/simplenotepad/simplenotepad/SimplenotepadWindow.py", line 29
def Gtk_font_button_get_font_name()
^
SyntaxError: invalid syntax
可能是什么问题?
您可能忘记了之后的冒号:
def Gtk_font_button_get_font_name()
应该是:
def Gtk_font_button_get_font_name():