首页题库练习题目详情
Python程序设计单选题中等

以下哪些是 try-except 语句的正确写法?

Atry: ... except: ...
Btry: ... except ValueError: ...
Ctry: ... finally: ...
D以上都是