私は機能を持っています:
def make_happiness_table("word-happiness.csv"):
''' make_happiness_table: string -> dict
creates a dictionary of happiness scores from the given file '''
return {}
しかし、プログラムを実行しようとすると、構文エラーが発生し続けます。
File "happiness.py", line 13
def make_happiness_table("word-happiness.csv"):
^
SyntaxError: invalid syntax
どうすればこれを修正できますか?