Python语法基础50题
1. Python3.x版本的保留字总数是 A. 35 B. 27 C. 16 D. 29 [答案] :A [解析] :Python中的保留字是35个(如果有33的选项也可选择),可以通过 help(keywords) 来查看这些保留字。 测试程序: help ( 'keywords' ) 打印结果: Here is a list of the Python keywords . Enter any keyword to get more help . False class from or None continue global pass True def if raise and del import return as elif in try assert else is while async except lambda with await finally nonlocal yield break for not 2. 以下选项中,不是Python语言保留字的是 A. while B. except C. do D. pass [答案] :C [解析] :使用 help(keywords) 可查看Python中的保留字,不难发现Python中是没有do的。 3. 关于Python程序框架,以下选项中描述错误的是 A. Python不采用严格的缩进来表明程序框架 B.