如何检查一个字符串是否是Python中的有效关键字?
若要检查一个字符串是否是有效的关键字,请导入关键字模块并使用iskeyword()方法。通过此方法,您可以直接显示所有关键字并进行验证。
假设我们的输入如下 −
else
以下为输出。在Python中,“else”是一个关键字 −
Keyword
在Python中检查一个字符串是否是有效的关键字
示例
import keyword # Create a List myList = ["for", "amit", "val", "while"] # Display the List print("List = ",myList) keyword_list = [] non_keyword_list = [] # Looping and verifying for keywords for item in myList: if keyword.iskeyword(item): keyword_list.append(item) else: non_keyword_list.append(item) print("\nKeywords= " + str(keyword_list)) print("Non-Keywords= " + str(non_keyword_list))
输出
List = ['for', 'amit', 'val', 'while'] Keywords= ['for', 'while'] Non-Keywords= ['amit', 'val']
通过显示所有关键字检查一个字符串是否是有效的关键字
现在让我们显示所有关键字 −
示例
import keyword # Fetch all the Keywords kwlist = keyword.kwlist # Display the Keywords print("Keywords = ",kwlist)
输出
Keywords = ['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']
广告