# Print Python keyword List.
# Author - https://www.ossez.com
import keyword
import json
print(keyword.kwlist)
print(len(keyword.kwlist))