page contents

以下代码输出是什么?

轩辕小不懂 发布于 2021-07-10 11:35
阅读 524
收藏 0
分类:Python开发
try:
    if '1' != 1:
        raise "someError"
    else:
        print("someError has not occured")
except "someError":
    print ("someError has occured")


a)someError has occured

b)someError has not occured

c)无效代码
d)以上都没有
1257
Nen
Nen
- 程序员

c)无效代码新的异常类必须从BaseException继承。

请先 登录 后评论