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