题目
Python 中的保留字不包括A. delB. globalC. gotoD. yield
Python 中的保留字不包括
A. del
B. global
C. goto
D. yield
题目解答
答案
C. goto
解析
在 Python 中,保留字是具有特殊含义的单词,不能用作变量名或其他标识符。选项 A、B 和 D 中的 del、global 和 yield 都是 Python 的保留字。然而,goto 不是 Python 的保留字,因为 Python 不支持 goto 语句。