本文主要是介绍《零基础学python》---第二章 python语言基础(2,保留字),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
保留字
保留字是python语言中一些已经被赋予特定意义的单词。
python中的保留字可以在IDLE中输入一下两行代码查看。
>>> import keyword
>>> keyword.kwlist
结果:['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语言基础(2,保留字)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!