try:
link = input("Enter URL of video you would like to download")
except RegexMatchError:
print("error")
我正在使用 Pytube 下载 youtube 视频,但我已经完成了所有工作,但每当给出无效的 URL 或输入时,我想引发错误。每当我输入无效输入时,我都会在控制台中看到 RegexMatchError,但我看不到我的错误消息,而只是 Pycharm 给我的错误消息。