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