使用元组创建一个存储python关键字的对象,并检测给定的单词是否是python的关键字
时间: 2024-05-14 07:15:46 浏览: 110
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 = 'test'
if word in keywords:
print(word, 'is a Python keyword')
else:
print(word, 'is not a Python keyword')
```
在这个例子中,单词“test”不是Python的关键字,所以输出将是“test is not a Python keyword”。
阅读全文