网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)

Sailing vessels are stand-on over power-driven vessels except ______.

A.in a crossing situation

B.in a meeting situation

C.when they are the overtaking vessel

D.on the inland waters of the PR China


参考答案

更多 “ Sailing vessels are stand-on over power-driven vessels except ______.A.in a crossing situationB.in a meeting situationC.when they are the overtaking vesselD.on the inland waters of the PR China ” 相关考题
考题 23_______. A. watchingB. visitingC. circlingD. crossing

考题 在“选择对象”提示下的默认选项是()命令。A.AllB.BoxC.WindowD.Crossing

考题 使用try……except……结构时,except后可不必指出异常类型

考题 我们用try-except来处理异常,except语句后面通常会写上________________,当except语句后面什么都不写时,表示可以处理其他所有的异常。

考题 在完整的异常语句中,语句出现的顺序正确是()。A.try-->except-->else-->finallyB.try-->else-->except-->finallyC.try-->else-->finally-->exceptD.try-->except-->finally-->else

考题 用try-except语句进行异常处理时,try语句可以有多个,但except语句只有一个。

考题 在完整的异常语句中,子句出现的顺序正确的是_______。A.try—>except—>else—>finallyB.try—>else—>except—>finallyC.try—>except—>finally—>elseD.try—>except—>except—>finally

考题 Python处理异常的方式包括:A.try……exceptB.try……except……C.try……except……except……elseD.try……except……else……finally

考题 关于try-except,哪个选项的描述是正确的?A.try-except可以捕获所有类型的程序错误B.编写程序时应尽可能多的使用try-except,以提供更好的用户体验C.try-except在程序中不可替代D.文件打开或网络获取的成功性等

考题 在Python 3中,能使用下列哪个语句处理多个异常?()A.except [NameError, FileNotFoundError]B.except {NameError, FileNotFoundError}C.except (NameError, FileNotFoundError)D.except NameError, FileNotFoundError