Hello coders;
The IPython interface, as you may know, is very unique compared to CPython. It has a bunch of magic commands that grant you a ton of different things - from %javascript to %%writefile which allows you to make your own files!
And one of these commands is the ‘??’ command. If you type an object, then ??, you get a helpful handful on information regarding that object. However, when you type keywords and then ??, you get Object `keyword_name`* not found.
So I propose that even these keywords are given at least a docstring or something to explain what they do. This way, if you stumble upon a new keyword, you can just type ?? after it, and you get its meaning.
*keyword_name stands for whatever keyword you have before the ??.