\[A\] Beyond\[B\] Except\[C\] Including\[D\] Excluding
第1题:
[A] With
[B] To
[C] Among
[D] Beyond
第2题:
在完整的异常语句中,子句出现的顺序正确的是_______。
A.try—>except—>else—>finally
B.try—>else—>except—>finally
C.try—>except—>finally—>else
D.try—>except—>except—>finally
第3题:
在Python 3中,能使用下列哪个语句处理多个异常?()
A.except [NameError, FileNotFoundError]
B.except {NameError, FileNotFoundError}
C.except (NameError, FileNotFoundError)
D.except NameError, FileNotFoundError
第4题:
[A] beneath [B] from [C] under [D] beyond
本题考查介词辨析。空格所在部分wondering... 是个分词结构,在句中作状语,wondering的逻辑主语是the driver,逻辑宾语是what引导的宾语从句。该从句中,coming up... the rear也是一个分词短语,作从句主语trucks的后置定语。空格处填入介词,其宾语是the rear(后面、后边、后部),根据文意,表示“从后面”应选[C]from。beneath和under都表示“在……之下”,beyond表示“在(或向)较远的一边”,不符合逻辑。
第5题:
Python处理异常的方式包括:
A.try……except
B.try……except……
C.try……except……except……else
D.try……except……else……finally