"Cannot specify extra characters after a string enclosed in quotation marks" 错误怎么办?
What to do with "Cannot specify extra characters after a string enclosed in quotation marks" error?
我有一段代码使用 playsound 模块播放声音,但文件位置给出错误:
import playsound
playsound.playsound('C:\Users\nc_ma\Downloads\Note1.mp3')
错误:
Error 305 for command:
open "C:\Users\nc_ma\Downloads\Note1.mp3"
Cannot specify extra characters after a string enclosed in quotation marks.
我遇到了同样的问题,我尝试了另一种方法:
我用了 os
import os
os.startfile('path\file.filetype')
它开始工作了
给你:
os.startfile('C:\Users\nc_ma\Downloads\Note1.mp3')
或
from playsound import playsound
playsound('Path\File Name.mp3')
我遇到了类似的错误 305 问题。检查您的播放声音版本。 1.3 版有问题。降级到版本 1.2.2 对我有用。
按照以下步骤操作:
pip uninstall playsound
pip install playsound==1.2.2
运行 同样的文件。应该可以。
我有一段代码使用 playsound 模块播放声音,但文件位置给出错误:
import playsound
playsound.playsound('C:\Users\nc_ma\Downloads\Note1.mp3')
错误:
Error 305 for command:
open "C:\Users\nc_ma\Downloads\Note1.mp3"
Cannot specify extra characters after a string enclosed in quotation marks.
我遇到了同样的问题,我尝试了另一种方法:
我用了 os
import os
os.startfile('path\file.filetype')
它开始工作了 给你:
os.startfile('C:\Users\nc_ma\Downloads\Note1.mp3')
或
from playsound import playsound
playsound('Path\File Name.mp3')
我遇到了类似的错误 305 问题。检查您的播放声音版本。 1.3 版有问题。降级到版本 1.2.2 对我有用。
按照以下步骤操作:
pip uninstall playsound
pip install playsound==1.2.2
运行 同样的文件。应该可以。