0
try:
    link = input("Enter URL of video you would like to download") 
except RegexMatchError:
    print("error")

我正在使用 Pytube 下载 youtube 视频,但我已经完成了所有工作,但每当给出无效的 URL 或输入时,我想引发错误。每当我输入无效输入时,我都会在控制台中看到 RegexMatchError,但我看不到我的错误消息,而只是 Pycharm 给我的错误消息。

4

1 回答 1

0

尝试更改错误类型,例如:

try:
    link = input("Enter URL of video you would like to download") 
except Exception:
    print("error")
于 2021-01-16T23:28:42.473 回答