Python – pygame error when executing exe file

You need double backslashes:

From:

song = path + '\music\\' + selected_song

To:

song = path + '\\music\\' + selected_song

Or:

song = f"{path}\\{music}\\{selected_song}"

Leave a Comment