TIL: If you ever forget the Python keywords

just type:

import keyword
print(keyword.kwlist)
print(keyword.softkwlist)

:slight_smile:
(edit: I know this is not the reason why this module exists, and this post just wanted to be a little funny.)

1 Like