首页 > 试题广场 >

以下选项中,不是Python 语言保留字的是 (  

[单选题]

以下选项中,不是Python 语言保留字的是 (   )

  • do

  • pass

  • except

  • while

import keyword keyword.kwlist 可以查看所有的保留字共有33个保留字 ['False', 'None', 'True', 'and', 'as', 'assert', 'break', 'class', 'continue', 'def', 'del', 'elif', 'else', 'except', 'finally', 'for', 'from', 'global', 'if', 'import', 'in', 'is', 'lambda', 'nonlocal', 'not', 'or', 'pass', 'raise', 'return', 'try', 'while', 'with', 'yield']
发表于 2020-06-16 12:11:28 回复(0)
A
发表于 2020-04-03 15:03:52 回复(0)
关键字except存在于try-except异常捕获语句当中,他的存在是为了排除各种可预测的异常情况
发表于 2020-03-02 11:36:56 回复(0)