Python关键字有哪些
时间: 2023-11-19 19:44:45 浏览: 91
Python中的关键字是指具有特殊含义,被用于定义变量、函数、类等的单词。Python中共有35个关键字,它们是:
```
False, None, True, and, as, assert, async, await, 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
```
注意:关键字是不能用作变量名或其他标识符的。
相关问题
python中关键字有哪些
Python中的关键字有:and、as、assert、break、class、continue、def、del、elif、else、except、False、finally、for、from、global、if、import、in、is、lambda、None、nonlocal、not、or、pass、raise、return、True、try、while、with、yield。
利用元组创建一个存储Python关键字的对象,并检测给定的单词是否是Python关键字。 Python
的关键字有:
```
False, None, True, and, as, assert, async, await, 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
```
可以通过以下代码来创建一个存储Python关键字的元组:
```
python_keywords = ('False', 'None', 'True', 'and', 'as', 'assert', 'async', 'await', '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')
```
然后,可以通过以下代码来检测给定的单词是否是Python关键字:
```
word = 'if'
if word in python_keywords:
print(word, 'is a Python keyword')
else:
print(word, 'is not a Python keyword')
```
输出:
```
if is a Python keyword
```
阅读全文