From a600e1f4532470731dbcfbc265607765c3837425 Mon Sep 17 00:00:00 2001 From: YuCheng Hu Date: Mon, 8 Mar 2021 22:35:59 -0500 Subject: [PATCH] =?UTF-8?q?=E6=89=93=E5=8D=B0=20Python=20=E7=9A=84?= =?UTF-8?q?=E5=85=B3=E9=94=AE=E5=AD=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/Keywords.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 tests/Keywords.py diff --git a/tests/Keywords.py b/tests/Keywords.py new file mode 100644 index 0000000..e9a8583 --- /dev/null +++ b/tests/Keywords.py @@ -0,0 +1,7 @@ +# Print Python keyword List. +# Author - https://www.ossez.com + +import keyword + +print(keyword.kwlist) +print(len(keyword.kwlist)) \ No newline at end of file