Python,节省时间的开始2保留字

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python,节省时间的开始2保留字相关的知识,希望对你有一定的参考价值。

参考技术A 有一段时间,没有更新了。

大概的学了一遍基础部分,现在是复习式的第二遍学习。

python中的保留字:

获取方式:

import keyword keyword.kwlist

这是python 3.9里的列表:['False', 'None', 'True', '__peg_parser__', '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'] 共计36个 "__peg_parser__"暂没找到解释

(这个是网上直接复制的^_^)

以上是关于Python,节省时间的开始2保留字的主要内容,如果未能解决你的问题,请参考以下文章

python3.8保留字总数

Python笔记--保留字

python中自定义函数的保留字是

Python中loop是系统保留字

python笔记——标识符和保留字

python中的kwargs保留字。这是啥意思? [复制]