python的keyword模块用法实例分析
作者:mingaixin 时间:2022-04-06 07:56:22
本文实例讲述了python的keyword模块用法。分享给大家供大家参考。具体如下:
Help on module keyword:
NAME
keyword - Keywords (from "graminit.c")
FILE
/usr/lib64/python2.6/keyword.py
DESCRIPTION
This file is automatically generated; please don't muck it up!
To update the symbols in this file, 'cd' to the top directory of
the python source tree after building the interpreter and run:
python Lib/keyword.py
FUNCTIONS
iskeyword = __contains__(...)
x.__contains__(y) <==> y in x.
DATA
__all__ = ['iskeyword', 'kwlist']
kwlist = ['and', 'as', 'assert', 'break', 'class', 'continue', 'def', ...
得到python的关键字列表:
>>> keyword.kwlist
['and', 'as', 'assert', 'break', 'class', 'continue', 'def', 'del', 'elif', 'else', 'except', 'exec', 'finally', 'for', 'from', 'global', 'if', 'import', 'in', 'is', 'lambda', 'not', 'or', 'pass', 'print', 'raise', 'return', 'try', 'while', 'with', 'yield']
判断字符串是否是python的关键字
>>> keyword.iskeyword('and')
True
>>>
>>> keyword.iskeyword('has')
False
希望本文所述对大家的Python程序设计有所帮助。
标签:python,模块
0
投稿
猜你喜欢
Python CNN卷积神经网络实战教程深入讲解
2023-09-28 19:51:12
python实现计数排序与桶排序实例代码
2023-12-28 11:32:37
Python语法学习之正则表达式的使用详解
2023-02-11 15:39:26
django基于restframework的CBV封装详解
2021-09-25 20:25:25
mysql drop database删除数据库命令实例讲解
2024-01-18 19:40:01
pandas数值计算与排序方法
2022-11-10 07:25:02
Python+ Flask实现Mock Server详情
2021-02-11 19:56:28
[JS]点出统计器
2013-07-22 03:23:24
Python实现的网页截图功能【PyQt4与selenium组件】
2021-04-13 16:21:56
jQuery事件的绑定、触发、及监听方法简单说明
2024-02-24 12:50:53
Golang详细讲解常用Http库及Gin框架的应用
2023-08-25 23:14:41
Systemd 入门实战教程
2022-10-29 15:52:44
JavaScript如何获取一个元素的样式信息
2023-08-28 12:16:17
SQL Server数据库和Oracle行转列的特殊方案描述
2010-07-26 15:14:00
SQLServer 2008助你轻松编写T-SQL存储过程
2010-12-06 13:38:00
你知道哪几种MYSQL的连接查询
2024-01-20 15:00:34
Python批量修改文本文件内容的方法
2022-07-16 08:37:43
Python跑循环时内存泄露的解决方法
2023-07-18 08:18:22
Django使用Profile扩展User模块方式
2023-06-16 12:26:12
Python操作CSV格式文件的方法大全
2023-07-08 18:57:45